diff options
author | Soispha <soispha@vhack.eu> | 2023-04-21 09:19:38 +0200 |
---|---|---|
committer | Soispha <soispha@vhack.eu> | 2023-05-09 19:31:17 +0200 |
commit | 63410dbb2a6bcd29cdb264fd3ecbcfeb9d981ff1 (patch) | |
tree | af1f3c110b4a0267d040ec25e550e1147c9b846e /flake/nixosConfigurations | |
parent | Build(update): Check for duplicates in flake.lock (diff) | |
download | nixos-config-63410dbb2a6bcd29cdb264fd3ecbcfeb9d981ff1.tar.gz nixos-config-63410dbb2a6bcd29cdb264fd3ecbcfeb9d981ff1.zip |
Feat(host/apzu): Add
Diffstat (limited to 'flake/nixosConfigurations')
-rw-r--r-- | flake/nixosConfigurations/default.nix | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/flake/nixosConfigurations/default.nix b/flake/nixosConfigurations/default.nix index 270f13a2..173882b7 100644 --- a/flake/nixosConfigurations/default.nix +++ b/flake/nixosConfigurations/default.nix @@ -102,6 +102,15 @@ in { ] ++ defaultModules; }; + apzu = nixpkgs.lib.nixosSystem { + inherit system pkgs; + specialArgs = defaultSpecialArgs; + modules = + [ + ../../hosts/apzu/configuration.nix + ] + ++ defaultModules; + }; spawn = nixpkgs.lib.nixosSystem { specialArgs = defaultSpecialArgs; modules = [../../hosts/spawn/configuration.nix]; |