OS, add basic tailscale app

This commit is contained in:
Julia Lange 2025-01-08 13:39:56 -08:00
parent 0f7638ad40
commit 17c7fde05f
Signed by: Julia
SSH key fingerprint: SHA256:KI8YxpkPRbnDRkXPgCuQCVz181++Vy7NAvmQj8alOhM
2 changed files with 14 additions and 0 deletions

View file

@ -27,7 +27,10 @@
tuigreet.enable = true;
hyprland.enable = true;
tailscale.enable = true;
shell.enabledShells = [ "fish" ];
shell.defaultShell = "fish";
steam.enable = true;
}

View file

@ -0,0 +1,11 @@
{ config, lib, ... }:
{
options.tailscale = {
enable = lib.mkEnableOption "Enables tailscale";
};
config = lib.mkIf config.tailscale.enable {
services.tailscale.enable = true;
};
}