Files
nix-config/modules/programs/vpn.nix
T
2026-03-26 20:26:24 +05:00

11 lines
195 B
Nix

{
flake.nixosModules.vpn = { pkgs, ... }:
{
services.tailscale = {
enable = true;
useRoutingFeatures = "client";
extraSetFlags = [ "--operator=matthew" ];
};
};
}