add tailscale

This commit is contained in:
RootHost-Stormwind
2025-01-13 01:13:13 +01:00
parent abdeb14b9b
commit e301367fc5
2 changed files with 11 additions and 0 deletions

10
tailscale.nix Normal file
View File

@@ -0,0 +1,10 @@
{ config, pkgs, ... }:
{
# make the tailscale command usable to users
environment.systemPackages = [ pkgs.tailscale ];
# enable the tailscale service
services.tailscale.enable = true;
}