Add count host
This commit is contained in:
parent
571759b08f
commit
cd307c0bfb
4 changed files with 167 additions and 0 deletions
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";
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue