Files
sydnix/modules/nixos/tailscale.nix
Madeleine Sydney 10dfd4e502 feat: tailscale
2024-12-29 02:51:04 -07:00

21 lines
325 B
Nix

{ config, lib, pkgs, ... }:
with lib;
let cfg = config.sydnix.tailscale;
in {
options = {
sydnix.tailscale = {
enable = mkEnableOption "Tailscale";
};
};
config = mkIf cfg.enable {
services.tailscale.enable = true;
networking.firewall.trustedInterfaces = [
"36mtailscale0"
];
};
}