diff options
| author | Fuwn <[email protected]> | 2025-05-04 04:15:15 -0700 |
|---|---|---|
| committer | Fuwn <[email protected]> | 2025-05-04 04:15:15 -0700 |
| commit | 876f417afe6dc9d6b165f10b23d69ab433094509 (patch) | |
| tree | b91c3eabde80be7e29f2c970f0f51f49b484bfac /hosts/default.nix | |
| parent | Nara: Add Motrix cask (diff) | |
| download | nixos-config-876f417afe6dc9d6b165f10b23d69ab433094509.tar.xz nixos-config-876f417afe6dc9d6b165f10b23d69ab433094509.zip | |
UTM: Add UTM build host
Diffstat (limited to 'hosts/default.nix')
| -rw-r--r-- | hosts/default.nix | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/hosts/default.nix b/hosts/default.nix index 9cf3550..6c7a864 100644 --- a/hosts/default.nix +++ b/hosts/default.nix @@ -42,6 +42,10 @@ minimalOptions = { inherit commonModules; } // commonInherits; + + macInherits = { + inherit inputs kansaiPkgs self; + }; in [ (import ./akashi pcOptions) @@ -49,6 +53,8 @@ (import ./hoka minimalOptions) (import ./kansai pcOptions) (import ./kioku minimalOptions) - (import ./nara { inherit inputs kansaiPkgs self; }) + (import ./nara macInherits) + + (import ./utm (macInherits // { inherit lib; })) ]; } |