diff --git a/modules/home/default.nix b/modules/home/default.nix index cbe5ace..8a62c8b 100644 --- a/modules/home/default.nix +++ b/modules/home/default.nix @@ -12,6 +12,7 @@ ./ssh.nix ./stylix.nix ./vscode.nix + ./xdg.nix ./zsh.nix ]; } diff --git a/modules/home/xdg.nix b/modules/home/xdg.nix new file mode 100644 index 0000000..7ecad6c --- /dev/null +++ b/modules/home/xdg.nix @@ -0,0 +1,16 @@ +{ + config, + ... +}: +{ + xdg = { + enable = true; + userDirs = { + enable = true; + createDirectories = true; + extraConfig = { + XDG_DEV_DIR = "${config.home.homeDirectory}/Dev"; + }; + }; + }; +}