From ee5ddccec98c104e3e0bd5e80267a3ebb8628e9b Mon Sep 17 00:00:00 2001 From: SindreKjelsrud Date: Sun, 12 Oct 2025 10:37:21 +0200 Subject: [PATCH] [arabasta] fix: Added forgotten arabasta-host in flake.nix Signed-off-by: SindreKjelsrud --- flake.nix | 23 +++++++++++++++-------- 1 file changed, 15 insertions(+), 8 deletions(-) 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 + ]; + }; }; }; }