summaryrefslogtreecommitdiff
path: root/system-profiles
diff options
context:
space:
mode:
Diffstat (limited to 'system-profiles')
-rw-r--r--system-profiles/core/default.nix10
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 {