From 4c1ef8f7a9f3c700554c82d282b65225031fc352 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Torjus=20H=C3=A5kestad?= Date: Wed, 13 Mar 2024 23:26:28 +0100 Subject: [PATCH] Add ns1 and ns2 to flake.nix --- flake.nix | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) diff --git a/flake.nix b/flake.nix index f676248..ff61e69 100644 --- a/flake.nix +++ b/flake.nix @@ -19,6 +19,24 @@ in { nixosConfigurations = { + ns1 = nixpkgs.lib.nixosSystem { + inherit system; + specialArgs = { inherit inputs self sops-nix; }; + modules = [ + ({ config, pkgs, ... }: { nixpkgs.overlays = [ overlay-unstable ]; }) + ./hosts/ns1 + sops-nix.nixosModules.sops + ]; + }; + ns2 = nixpkgs.lib.nixosSystem { + inherit system; + specialArgs = { inherit inputs self sops-nix; }; + modules = [ + ({ config, pkgs, ... }: { nixpkgs.overlays = [ overlay-unstable ]; }) + ./hosts/ns2 + sops-nix.nixosModules.sops + ]; + }; ns3 = nixpkgs.lib.nixosSystem { inherit system; specialArgs = { inherit inputs self sops-nix; };