diff options
author | Gregor Kleen <gkleen@yggdrasil.li> | 2022-03-13 10:55:05 +0100 |
---|---|---|
committer | Gregor Kleen <gkleen@yggdrasil.li> | 2022-03-13 10:55:05 +0100 |
commit | fa246cd520aa2f2b369e8cb60a926f4d3844f942 (patch) | |
tree | 067d08a24147234d042070b7c5e2d07f91d4d94b /user-profiles/core.nix | |
parent | 46152e140fe428538a562dcfd1627a88a02dcc09 (diff) | |
download | nixos-fa246cd520aa2f2b369e8cb60a926f4d3844f942.tar nixos-fa246cd520aa2f2b369e8cb60a926f4d3844f942.tar.gz nixos-fa246cd520aa2f2b369e8cb60a926f4d3844f942.tar.bz2 nixos-fa246cd520aa2f2b369e8cb60a926f4d3844f942.tar.xz nixos-fa246cd520aa2f2b369e8cb60a926f4d3844f942.zip |
rebuild-machines: machines flake
Diffstat (limited to 'user-profiles/core.nix')
-rw-r--r-- | user-profiles/core.nix | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/user-profiles/core.nix b/user-profiles/core.nix index cf5db3b6..29891d12 100644 --- a/user-profiles/core.nix +++ b/user-profiles/core.nix | |||
@@ -10,12 +10,11 @@ | |||
10 | manual.manpages.enable = true; | 10 | manual.manpages.enable = true; |
11 | home.stateVersion = "20.09"; | 11 | home.stateVersion = "20.09"; |
12 | systemd.user.startServices = "sd-switch"; | 12 | systemd.user.startServices = "sd-switch"; |
13 | |||
14 | }; | 13 | }; |
15 | }; | 14 | }; |
16 | 15 | ||
17 | systemd.services."home-manager-${utils.escapeSystemdPath userName}" = lib.mkIf config.home-manager.enableSystemd { | 16 | systemd.services."home-manager-${utils.escapeSystemdPath userName}" = lib.mkIf (!config.home-manager.enableSystemd) { |
18 | enable = false; # deploy with deploy-rs | 17 | restartIfChanged = false; # only run once on startup, deploy to running system with deploy-rs |
19 | }; | 18 | }; |
20 | }; | 19 | }; |
21 | } | 20 | } |