17 lines
288 B
Nix
17 lines
288 B
Nix
|
{ lib, config, pkgs, ... }:
|
||
|
|
||
|
with lib;
|
||
|
let
|
||
|
cfg = config.modules.tailscale;
|
||
|
in {
|
||
|
options.modules.tailscale = {
|
||
|
enable = mkEnableOption "tailscale";
|
||
|
};
|
||
|
|
||
|
config = mkIf cfg.enable {
|
||
|
services.tailscale = {
|
||
|
enable = true;
|
||
|
useRoutingFeatures = "client";
|
||
|
};
|
||
|
};
|
||
|
}
|