From 5dfaaf249b3a6ad9bd5a51193a617e0f3d19cdcf Mon Sep 17 00:00:00 2001 From: truxnell <19149206+truxnell@users.noreply.github.com> Date: Sat, 23 Mar 2024 20:54:05 +1100 Subject: [PATCH] feat: add host --- flake.nix | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/flake.nix b/flake.nix index 2697a9c..ad4fa8d 100644 --- a/flake.nix +++ b/flake.nix @@ -77,6 +77,14 @@ ]; }; + citadel = nixpkgs.lib.nixosSystem { + inherit specialArgs; + system = "x86_64-linux"; + modules = defaultModules ++ [ + ./nixos/hosts/citadel + ]; + }; + dns01 = nixpkgs.lib.nixosSystem { inherit specialArgs; system = "aarch64-linux";