Add nightcity host

This commit is contained in:
Alexander Wainwright 2025-07-05 21:34:00 +10:00
parent 18f46f5e58
commit 13bde0f800
2 changed files with 64 additions and 0 deletions

View file

@ -61,6 +61,28 @@
}
];
};
nightcity = nixpkgs.lib.nixosSystem {
system = "x86_64-linux";
specialArgs = { inherit inputs; };
modules = [
./hosts/nightcity/configuration.nix
# enable home manager
home-manager.nixosModules.home-manager
{
home-manager.useGlobalPkgs = true;
home-manager.useUserPackages = true;
home-manager.users.alex = import ./alex/home.nix;
# Optionally, use home-manager.extraSpecialArgs to pass arguments to
# home.nix
home-manager.extraSpecialArgs = { inherit inputs; isDesktop=false; };
}
];
};
# other hosts...
};
};