summaryrefslogtreecommitdiff
path: root/system-profiles
diff options
context:
space:
mode:
authorGregor Kleen <gkleen@yggdrasil.li>2023-12-09 12:34:05 +0100
committerGregor Kleen <gkleen@yggdrasil.li>2023-12-09 12:34:05 +0100
commita68d2daa11326336766c208597152caaca08796e (patch)
tree8dd37bf12488655555806ae3499fe08387178d43 /system-profiles
parent2c3e16e27daf8e271915afca44dbc4aec18a6c01 (diff)
downloadnixos-a68d2daa11326336766c208597152caaca08796e.tar
nixos-a68d2daa11326336766c208597152caaca08796e.tar.gz
nixos-a68d2daa11326336766c208597152caaca08796e.tar.bz2
nixos-a68d2daa11326336766c208597152caaca08796e.tar.xz
nixos-a68d2daa11326336766c208597152caaca08796e.zip
bump
Diffstat (limited to 'system-profiles')
-rw-r--r--system-profiles/core/default.nix6
1 files changed, 3 insertions, 3 deletions
diff --git a/system-profiles/core/default.nix b/system-profiles/core/default.nix
index 67d50606..0859d707 100644
--- a/system-profiles/core/default.nix
+++ b/system-profiles/core/default.nix
@@ -1,4 +1,4 @@
1{ flake, flakeInputs, path, hostName, config, lib, pkgs, customUtils, ... }: 1{ flake, flakeInputs, home-manager, path, hostName, config, lib, pkgs, customUtils, ... }:
2 2
3with lib; 3with lib;
4 4
@@ -7,8 +7,8 @@ let
7 userProfileSet = customUtils.types.attrNameSet (zipAttrs (attrValues flake.nixosModules.userProfiles)); 7 userProfileSet = customUtils.types.attrNameSet (zipAttrs (attrValues flake.nixosModules.userProfiles));
8 hasSops = config.sops.secrets != {}; 8 hasSops = config.sops.secrets != {};
9in { 9in {
10 imports = with flakeInputs; 10 imports =
11 [ sops-nix.nixosModules.sops 11 [ flakeInputs.sops-nix.nixosModules.sops
12 home-manager.nixosModules.home-manager 12 home-manager.nixosModules.home-manager
13 ]; 13 ];
14 14