Files
nixos-config/modules/home/xdg.nix

19 lines
377 B
Nix
Raw Normal View History

2025-10-26 23:43:24 -04:00
{
config,
...
}:
{
xdg = {
enable = true;
userDirs = {
enable = true;
createDirectories = true;
extraConfig = {
XDG_DEV_DIR = "${config.home.homeDirectory}/Dev";
XDG_WALLPAPERS_DIR = "${config.xdg.userDirs.pictures}/Wallpapers";
XDG_SCREENSHOTS_DIR = "${config.xdg.userDirs.pictures}/Screenshots";
2025-10-26 23:43:24 -04:00
};
};
};
}