From 5110e0a321289f67b534490bbcae920dfe6217e2 Mon Sep 17 00:00:00 2001 From: Noa Aarts Date: Fri, 15 Mar 2024 19:52:47 +0100 Subject: [PATCH] make #server instead of #vnc --- flake.nix | 8 ++------ 1 file changed, 2 insertions(+), 6 deletions(-) diff --git a/flake.nix b/flake.nix index 1a386a5..f4d5329 100644 --- a/flake.nix +++ b/flake.nix @@ -33,10 +33,6 @@ }; outputs = { self, nixpkgs, nix-colors, automapaper, ... }@inputs: - let - system = "x86_64-linux"; - pkgs = nixpkgs.legacyPackages.${system}; - in { nixosConfigurations = { default = nixpkgs.lib.nixosSystem { @@ -50,13 +46,13 @@ inputs.home-manager.nixosModules.default ]; }; - vnc = nixpkgs.lib.nixosSystem { + server = nixpkgs.lib.nixosSystem { specialArgs = { inherit inputs; inherit nix-colors; }; modules = [ - ./hosts/vnc/configuration.nix + ./hosts/server/configuration.nix inputs.home-manager.nixosModules.default ]; };