mirror of
https://github.com/artagaz/nix-config.git
synced 2026-06-23 02:05:45 +07:00
11 lines
195 B
Nix
11 lines
195 B
Nix
{
|
|
flake.nixosModules.vpn = { pkgs, ... }:
|
|
{
|
|
services.tailscale = {
|
|
enable = true;
|
|
useRoutingFeatures = "client";
|
|
extraSetFlags = [ "--operator=matthew" ];
|
|
};
|
|
};
|
|
}
|