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; };