Files

22 lines
431 B
Nix
Raw Permalink Normal View History

2026-04-04 16:46:30 -04:00
{
flake.modules.homeManager.xdg =
{
config,
...
}:
{
xdg = {
enable = true;
userDirs = {
enable = true;
setSessionVariables = true;
createDirectories = true;
extraConfig = {
DEV = "${config.home.homeDirectory}/Dev";
SCREENSHOTS = "${config.xdg.userDirs.pictures}/Screenshots";
};
};
};
};
}