diff options
| -rw-r--r-- | hosts/default.nix | 14 |
1 files changed, 9 insertions, 5 deletions
diff --git a/hosts/default.nix b/hosts/default.nix index f683ce3..c609a4f 100644 --- a/hosts/default.nix +++ b/hosts/default.nix @@ -35,14 +35,18 @@ ; }; - pcInherits = { + pcOptions = { inherit pcModules; } // commonInherits; + + minimalOptions = { + inherit commonModules; + } // commonInherits; in [ - (import ./akashi pcInherits) - (import ./himeji (commonInherits // { inherit commonModules; })) - (import ./kansai pcInherits) - (import ./kioku (commonInherits // { inherit commonModules; })) + (import ./akashi pcOptions) + (import ./himeji minimalOptions) + (import ./kansai pcOptions) + (import ./kioku minimalOptions) ]; } |