diff options
author | Tim Keller <tjkeller.xyz> | 2025-05-05 13:25:38 -0500 |
---|---|---|
committer | Tim Keller <tjkeller.xyz> | 2025-05-05 13:25:38 -0500 |
commit | 1969493257f4644c3b105b3fc2c82a445a2ae664 (patch) | |
tree | fa14e1d54a47b45895a232cec1ae6641af717a05 /modules/home/default.nix | |
parent | f59d51611cbe61ff492bd836cea29a7aa33a294c (diff) | |
download | nixos-1969493257f4644c3b105b3fc2c82a445a2ae664.tar.xz nixos-1969493257f4644c3b105b3fc2c82a445a2ae664.zip |
use xdg-userdirs functionality
Diffstat (limited to 'modules/home/default.nix')
-rw-r--r-- | modules/home/default.nix | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/modules/home/default.nix b/modules/home/default.nix index 8748fb9..c6278f2 100644 --- a/modules/home/default.nix +++ b/modules/home/default.nix @@ -1,7 +1,7 @@ { lib, userDetails, homeStateVersion, ... }: { home = { username = userDetails.username; - homeDirectory = userDetails.home.root; + homeDirectory = userDetails.home; stateVersion = homeStateVersion; }; @@ -14,6 +14,7 @@ ./initial-home-setup.nix ./pcmanfm.nix # TODO mk name changeable & doesn't seem to work right now ./theme.nix + ./userdirs.nix ./wallpapers.nix ]; |