diff options
| author | Mike Vink <mike1994vink@gmail.com> | 2023-10-12 10:28:39 +0000 |
|---|---|---|
| committer | Mike Vink <mike1994vink@gmail.com> | 2023-10-12 10:28:39 +0000 |
| commit | 7dcfcc34fac18ace170dc5aeaf049edf82f8f158 (patch) | |
| tree | ac12ce22755fd5d321dd96452d26a10485977624 /flake.nix | |
| parent | a73532c19d9fa547a6330421e3093256e9d65b3c (diff) | |
fixup
Diffstat (limited to 'flake.nix')
| -rw-r--r-- | flake.nix | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -45,7 +45,7 @@ ]))); }; - nixosConfigurations.core = nixpkgs.lib.nixosSystem { + nixosConfigurations.core = extraModules: nixpkgs.lib.nixosSystem { inherit lib system; specialArgs = {inherit inputs;}; modules = [ @@ -57,7 +57,7 @@ ] ++ (attrValues (attrsets.mergeAttrsList (map modulesIn [ ./profiles/core - ]))); + ]))) ++ extraModules; }; templates = { |
