OS, add basic tailscale app
This commit is contained in:
parent
0f7638ad40
commit
17c7fde05f
2 changed files with 14 additions and 0 deletions
|
|
@ -27,7 +27,10 @@
|
||||||
|
|
||||||
tuigreet.enable = true;
|
tuigreet.enable = true;
|
||||||
hyprland.enable = true;
|
hyprland.enable = true;
|
||||||
|
tailscale.enable = true;
|
||||||
|
|
||||||
shell.enabledShells = [ "fish" ];
|
shell.enabledShells = [ "fish" ];
|
||||||
shell.defaultShell = "fish";
|
shell.defaultShell = "fish";
|
||||||
|
|
||||||
|
steam.enable = true;
|
||||||
}
|
}
|
||||||
|
|
|
||||||
11
nixosModules/apps/tailscale/app.nix
Normal file
11
nixosModules/apps/tailscale/app.nix
Normal file
|
|
@ -0,0 +1,11 @@
|
||||||
|
{ config, lib, ... }:
|
||||||
|
|
||||||
|
{
|
||||||
|
options.tailscale = {
|
||||||
|
enable = lib.mkEnableOption "Enables tailscale";
|
||||||
|
};
|
||||||
|
|
||||||
|
config = lib.mkIf config.tailscale.enable {
|
||||||
|
services.tailscale.enable = true;
|
||||||
|
};
|
||||||
|
}
|
||||||
Loading…
Add table
Add a link
Reference in a new issue