diff --git a/flake.nix b/flake.nix index cb78d30..d729868 100644 --- a/flake.nix +++ b/flake.nix @@ -22,14 +22,14 @@ outputs = { self, nixpkgs, ... }@inputs: { nixosConfigurations = { - water7 = nixpkgs.lib.nixosSystem { - specialArgs = {inherit inputs;}; - modules = [ - ./hosts/water7/configuration.nix - inputs.home-manager.nixosModules.default - ]; - }; - eastblue = nixpkgs.lib.nixosSystem { + arabasta = nixpkgs.lib.nixosSystem { + specialArgs = {inherit inputs;}; + modules = [ + ./hosts/arabasta/configuration.nix + inputs.home-manager.nixosModules.default + ]; + }; + eastblue = nixpkgs.lib.nixosSystem { specialArgs = {inherit inputs;}; modules = [ ./hosts/eastblue/configuration.nix @@ -43,6 +43,13 @@ inputs.home-manager.nixosModules.default ]; }; + water7 = nixpkgs.lib.nixosSystem { + specialArgs = {inherit inputs;}; + modules = [ + ./hosts/water7/configuration.nix + inputs.home-manager.nixosModules.default + ]; + }; }; }; }