From b991fa423615844937698ccb2e1b8f6f862cc98d Mon Sep 17 00:00:00 2001 From: Sam Date: Sat, 20 Jul 2024 14:48:32 +0100 Subject: [PATCH] Add citadel to flake.nix --- flake.nix | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/flake.nix b/flake.nix index a933d0b..6f1b771 100644 --- a/flake.nix +++ b/flake.nix @@ -130,6 +130,16 @@ } ]; }; + citadel = nixpkgs.lib.nixosSystem { + inherit specialArgs; + modules = [ + ./hosts/citadel + home-manager.nixosModules.home-manager + { + home-manager.extraSpecialArgs = specialArgs; + } + ]; + }; }; }; }