diff options
author | Gregor Kleen <gkleen@yggdrasil.li> | 2024-08-22 14:48:24 +0200 |
---|---|---|
committer | Gregor Kleen <gkleen@yggdrasil.li> | 2024-08-22 14:48:24 +0200 |
commit | 567c22812fe1fbe525f1732661d253b3902710a9 (patch) | |
tree | b78ce8007f265ed9d542f7992beca14a12327dec /system-profiles/core | |
parent | d88404d51a6acd082e9917467862105ff1266367 (diff) | |
download | nixos-567c22812fe1fbe525f1732661d253b3902710a9.tar nixos-567c22812fe1fbe525f1732661d253b3902710a9.tar.gz nixos-567c22812fe1fbe525f1732661d253b3902710a9.tar.bz2 nixos-567c22812fe1fbe525f1732661d253b3902710a9.tar.xz nixos-567c22812fe1fbe525f1732661d253b3902710a9.zip |
...
Diffstat (limited to 'system-profiles/core')
-rw-r--r-- | system-profiles/core/default.nix | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/system-profiles/core/default.nix b/system-profiles/core/default.nix index 63b9a2b5..fede386b 100644 --- a/system-profiles/core/default.nix +++ b/system-profiles/core/default.nix | |||
@@ -160,7 +160,17 @@ in { | |||
160 | home-manager = { | 160 | home-manager = { |
161 | useGlobalPkgs = true; # Otherwise home-manager would only work impurely | 161 | useGlobalPkgs = true; # Otherwise home-manager would only work impurely |
162 | useUserPackages = false; | 162 | useUserPackages = false; |
163 | useUserService = true; | ||
163 | backupFileExtension = "bak"; | 164 | backupFileExtension = "bak"; |
165 | sharedModules = lib.attrValues flake.homeModules ++ [ | ||
166 | { | ||
167 | manual.manpages.enable = true; | ||
168 | systemd.user.startServices = "sd-switch"; | ||
169 | |||
170 | programs.ssh.internallyManaged = mkForce true; | ||
171 | } | ||
172 | ]; | ||
173 | extraSpecialArgs = { inherit flake flakeInputs path; }; | ||
164 | }; | 174 | }; |
165 | 175 | ||
166 | sops = mkIf hasSops { | 176 | sops = mkIf hasSops { |