diff options
| author | seth <[email protected]> | 2024-02-04 16:07:57 -0500 |
|---|---|---|
| committer | seth <[email protected]> | 2024-02-04 16:07:57 -0500 |
| commit | 80321e46cbd2e436aa4b1c0edfcd5de2c71abcd0 (patch) | |
| tree | 349bd26cd6ad7d3e50c7d2e59bfb11ebb20ad1cd /modules/flake | |
| parent | cde5f27792b28aebde995d78d157ad0041d7018c (diff) | |
flakeModules/configurations: import nixos/darwin modules by default
Diffstat (limited to 'modules/flake')
| -rw-r--r-- | modules/flake/configurations.nix | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/modules/flake/configurations.nix b/modules/flake/configurations.nix index 7980b8a..6cbe2cb 100644 --- a/modules/flake/configurations.nix +++ b/modules/flake/configurations.nix @@ -3,6 +3,7 @@ lib, withSystem, inputs, + self, ... }: let namespace = "configurations"; @@ -48,6 +49,7 @@ ../../systems/${name} {networking.hostName = name;} ] + ++ lib.attrValues self."${type}Modules" ++ cfg.${type}.modules ++ args.modules; |
