diff options
| author | Baitinq <[email protected]> | 2022-06-29 22:11:17 +0200 |
|---|---|---|
| committer | Baitinq <[email protected]> | 2022-06-29 22:11:17 +0200 |
| commit | 18dda7e74b169b9e3d65e1ca8b4814b01af28fb9 (patch) | |
| tree | d83506c7fc49d96c9d0d08bbf2e363681bbde551 /hosts | |
| parent | Create ~/src dev folder if it doesnt exist (diff) | |
| download | nixos-config-18dda7e74b169b9e3d65e1ca8b4814b01af28fb9.tar.gz nixos-config-18dda7e74b169b9e3d65e1ca8b4814b01af28fb9.tar.bz2 nixos-config-18dda7e74b169b9e3d65e1ca8b4814b01af28fb9.zip | |
Disable the creation of $HOME/Desktop by altering xdg
Diffstat (limited to 'hosts')
| -rw-r--r-- | hosts/home.nix | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/hosts/home.nix b/hosts/home.nix index 07f3c11..64a4dbb 100644 --- a/hosts/home.nix +++ b/hosts/home.nix @@ -185,5 +185,8 @@ in }; }; + # For disabling the automatic creation of $HOME/Desktop + xdg.userDirs.desktop = "$HOME/"; + home.stateVersion = "22.05"; } |