mirror of
https://github.com/tuxdotrs/tawm.git
synced 2025-07-05 20:56:33 +05:30
added a new host machine
This commit is contained in:
20
flake.nix
20
flake.nix
@ -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 = [
|
||||
|
Reference in New Issue
Block a user