make #server instead of #vnc

This commit is contained in:
Noa Aarts 2024-03-15 19:52:47 +01:00
parent 1554b3118c
commit 5110e0a321

View file

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