feat(xdg): enable user dirs system-wide

This commit is contained in:
randogoth 2026-02-05 09:26:20 +02:00
parent bab9f550be
commit ddf31b7f94
2 changed files with 10 additions and 0 deletions

View file

@ -5,6 +5,7 @@
./locale.nix ./locale.nix
./boot-efi.nix ./boot-efi.nix
./nix-core.nix ./nix-core.nix
./xdg-user-dirs.nix
./services.nix ./services.nix
./networking.nix ./networking.nix
./virtualization.nix ./virtualization.nix

View file

@ -0,0 +1,9 @@
{ ... }:
{
xdg.userDirs = {
enable = true;
createDirectories = true;
};
}