Files
stormwind-nixfiles/tailscale.nix

11 lines
197 B
Nix
Raw Normal View History

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