Add count host
This commit is contained in:
22
flake.nix
22
flake.nix
@@ -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";
|
||||
|
||||
|
||||
Reference in New Issue
Block a user