diff options
author | Gregor Kleen <gkleen@yggdrasil.li> | 2020-12-31 14:45:11 +0100 |
---|---|---|
committer | Gregor Kleen <gkleen@yggdrasil.li> | 2020-12-31 14:45:11 +0100 |
commit | eb2f80a1f801a05930eebda0f5c00a076097cdcf (patch) | |
tree | 3997c75ab38629bea7382dd8e7d393dfc0c56640 /system-profiles/core.nix | |
parent | 34cf32a834a3b6abf46643e4cc6bc1a0d5f2992d (diff) | |
download | nixos-eb2f80a1f801a05930eebda0f5c00a076097cdcf.tar nixos-eb2f80a1f801a05930eebda0f5c00a076097cdcf.tar.gz nixos-eb2f80a1f801a05930eebda0f5c00a076097cdcf.tar.bz2 nixos-eb2f80a1f801a05930eebda0f5c00a076097cdcf.tar.xz nixos-eb2f80a1f801a05930eebda0f5c00a076097cdcf.zip |
Move extra modules to core profile
Diffstat (limited to 'system-profiles/core.nix')
-rw-r--r-- | system-profiles/core.nix | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/system-profiles/core.nix b/system-profiles/core.nix index 2af82703..f009c178 100644 --- a/system-profiles/core.nix +++ b/system-profiles/core.nix | |||
@@ -2,6 +2,11 @@ | |||
2 | let | 2 | let |
3 | profileSet = customUtils.types.attrNameSet flake.nixosModules.systemProfiles; | 3 | profileSet = customUtils.types.attrNameSet flake.nixosModules.systemProfiles; |
4 | in { | 4 | in { |
5 | imports = with flakeInputs; | ||
6 | [ sops-nix.nixosModules.sops | ||
7 | home-manager.nixosModules.home-manager | ||
8 | ]; | ||
9 | |||
5 | options = { | 10 | options = { |
6 | # See mkSystemProfile in ../flake.nix | 11 | # See mkSystemProfile in ../flake.nix |
7 | system.profiles = lib.mkOption { | 12 | system.profiles = lib.mkOption { |