1
0
Fork 0
mirror of https://git.sr.ht/~neverness/ultima synced 2025-01-01 16:53:54 +00:00
ultima/modules/nixos/services/tailscale/default.nix

18 lines
314 B
Nix

{ x, lib, config, ... }:
with lib;
with x;
let cfg = config.module.services.tailscale;
in {
options = { module.services.tailscale = { enable = mkBool; }; };
config = mkIf cfg.enable {
services = {
tailscale = True // { # OWN VPN NETWORK
useRoutingFeatures = "both";
};
};
};
}