Files
stormwind-nixfiles/tailscale.nix
RootHost-Stormwind e301367fc5 add tailscale
2025-01-13 01:13:13 +01:00

11 lines
197 B
Nix

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