mirror of
https://github.com/Nickiel12/nicks-nix-config.git
synced 2024-11-22 12:49:32 -08:00
19 lines
462 B
Nix
19 lines
462 B
Nix
|
|
{ config, pkgs, ... }:
|
|
|
|
{
|
|
xdg = {
|
|
userDirs = {
|
|
enable = true;
|
|
templates = null;
|
|
|
|
desktop = "${config.home.homeDirectory}/Desktop";
|
|
documents = "${config.home.homeDirectory}/Documents";
|
|
download = "${config.home.homeDirectory}/Downloads";
|
|
music = "${config.home.homeDirectory}/Music";
|
|
pictures = "${config.home.homeDirectory}/Pictures";
|
|
publicShare = "${config.home.homeDirectory}/Nextcloud";
|
|
};
|
|
};
|
|
}
|
|
|