added a new host machine

This commit is contained in:
2023-12-22 03:57:26 +05:30
parent a75d7948d5
commit 183d306979
4 changed files with 200 additions and 0 deletions

View File

@ -61,6 +61,26 @@
];
};
controller = nixpkgs.lib.nixosSystem {
specialArgs = { inherit inputs outputs username; };
modules = [
./hosts/controller
./modules/nixos/headscale.nix
home-manager.nixosModules.home-manager
{
home-manager.useUserPackages = true;
home-manager.extraSpecialArgs = { inherit inputs outputs username; };
home-manager.users.${username} = {
imports = [
./modules/home-manager
./home/tux
];
};
}
];
};
wsl = nixpkgs.lib.nixosSystem {
specialArgs = { inherit inputs outputs username; };
modules = [