From 9a4c044f65a5b52a2298f1c9a4d3595b1995b362 Mon Sep 17 00:00:00 2001 From: TheArcaneBrony Date: Thu, 16 Mar 2023 15:29:49 +0100 Subject: add to system list --- flake.nix | 26 +++++++++++++++++++------- 1 file changed, 19 insertions(+), 7 deletions(-) diff --git a/flake.nix b/flake.nix index a6a64bb..dc5d08d 100755 --- a/flake.nix +++ b/flake.nix @@ -15,15 +15,14 @@ outputs = { self, nixpkgs, home-manager, botcore-v4 }: { nixosConfigurations = { - Rory-discordbots = nixpkgs.lib.nixosSystem { + Rory-nginx = nixpkgs.lib.nixosSystem { system = "x86_64-linux"; modules = [ - ./host/Rory-discordbots/configuration.nix + ./host/Rory-nginx/configuration.nix ./hardware-configuration.nix home-manager.nixosModules.home-manager ]; specialArgs = { - inherit botcore-v4; inherit home-manager; }; }; @@ -38,10 +37,10 @@ inherit home-manager; }; }; - Rory-devenv = nixpkgs.lib.nixosSystem { + Rory-synapse = nixpkgs.lib.nixosSystem { system = "x86_64-linux"; modules = [ - ./host/Rory-devenv/configuration.nix + ./host/Rory-synapse/configuration.nix ./hardware-configuration.nix home-manager.nixosModules.home-manager ]; @@ -49,10 +48,22 @@ inherit home-manager; }; }; - Rory-nginx = nixpkgs.lib.nixosSystem { + Rory-discordbots = nixpkgs.lib.nixosSystem { system = "x86_64-linux"; modules = [ - ./host/Rory-nginx/configuration.nix + ./host/Rory-discordbots/configuration.nix + ./hardware-configuration.nix + home-manager.nixosModules.home-manager + ]; + specialArgs = { + inherit botcore-v4; + inherit home-manager; + }; + }; + Rory-devenv = nixpkgs.lib.nixosSystem { + system = "x86_64-linux"; + modules = [ + ./host/Rory-devenv/configuration.nix ./hardware-configuration.nix home-manager.nixosModules.home-manager ]; @@ -60,6 +71,7 @@ inherit home-manager; }; }; + }; }; } -- cgit 1.4.1