Began xdg config, added Dev home dir

This commit is contained in:
2025-10-26 23:43:24 -04:00
parent 94d28215a6
commit 20e3ffdd48
2 changed files with 17 additions and 0 deletions

View File

@@ -12,6 +12,7 @@
./ssh.nix ./ssh.nix
./stylix.nix ./stylix.nix
./vscode.nix ./vscode.nix
./xdg.nix
./zsh.nix ./zsh.nix
]; ];
} }

16
modules/home/xdg.nix Normal file
View File

@@ -0,0 +1,16 @@
{
config,
...
}:
{
xdg = {
enable = true;
userDirs = {
enable = true;
createDirectories = true;
extraConfig = {
XDG_DEV_DIR = "${config.home.homeDirectory}/Dev";
};
};
};
}