Add count host

This commit is contained in:
Alexander Wainwright
2025-08-11 18:09:52 +10:00
parent 571759b08f
commit cd307c0bfb
4 changed files with 167 additions and 0 deletions

View File

@@ -39,6 +39,28 @@
}
];
};
count = nixpkgs.lib.nixosSystem {
system = "x86_64-linux";
specialArgs = { inherit inputs; };
modules = [
./hosts/count/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=true; };
}
];
};
alt = nixpkgs.lib.nixosSystem {
system = "x86_64-linux";