diff options
Diffstat (limited to 'user-profiles')
-rw-r--r-- | user-profiles/core.nix | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/user-profiles/core.nix b/user-profiles/core.nix index a8af48b3..d3c42f36 100644 --- a/user-profiles/core.nix +++ b/user-profiles/core.nix | |||
@@ -5,7 +5,9 @@ with lib; | |||
5 | { | 5 | { |
6 | config = { | 6 | config = { |
7 | users.users.${userName} = {}; # Just make sure the user is created | 7 | users.users.${userName} = {}; # Just make sure the user is created |
8 | home-manager.users.${userName} = {}; | 8 | home-manager.users.${userName} = { |
9 | config.nix.settings.use-xdg-base-directories = lib.mkDefault true; | ||
10 | }; | ||
9 | 11 | ||
10 | systemd.services."home-manager-${utils.escapeSystemdPath userName}" = lib.mkIf (!config.home-manager.enableSystemd) { | 12 | systemd.services."home-manager-${utils.escapeSystemdPath userName}" = lib.mkIf (!config.home-manager.enableSystemd) { |
11 | restartIfChanged = false; # only run once on startup, deploy to running system with deploy-rs | 13 | restartIfChanged = false; # only run once on startup, deploy to running system with deploy-rs |