diff options
Diffstat (limited to 'home/common/modules')
-rw-r--r-- | home/common/modules/xdgdirs.nix | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/home/common/modules/xdgdirs.nix b/home/common/modules/xdgdirs.nix new file mode 100644 index 0000000..3073a10 --- /dev/null +++ b/home/common/modules/xdgdirs.nix @@ -0,0 +1,23 @@ +{ config, ... }: let + home = config.home.homeDirectory; + + etc = home + "/etc"; + dl = home + "/dl"; +in { + xdg = { + enable = true; + + userDirs = { + enable = true; + + download = dl; + desktop = etc; + templates = etc; + publicShare = dl; + music = home + "/ms"; + videos = home + "/vid"; + pictures = home + "/pix"; + documents = home + "/doc"; + }; + }; +} |