diff options
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 ]; |