diff options
author | Franck Cuny <franck@fcuny.net> | 2023-05-02 19:30:39 -0700 |
---|---|---|
committer | Franck Cuny <franck@fcuny.net> | 2023-05-02 19:30:39 -0700 |
commit | b6d6b6f366c3cbf7e7340f08ea8877bf0a8d45e7 (patch) | |
tree | c45c1011b194c0982ba82c5f2f06d18941a916ca /modules/services/tailscale | |
parent | profiles/default: move stuff related to boot (diff) | |
download | world-b6d6b6f366c3cbf7e7340f08ea8877bf0a8d45e7.tar.gz |
profiles: consolidates common networking bits
This remove ssh on workstations. I also drop mosh since I don't use it.
Diffstat (limited to '')
-rw-r--r-- | modules/services/tailscale/default.nix | 15 |
1 files changed, 0 insertions, 15 deletions
diff --git a/modules/services/tailscale/default.nix b/modules/services/tailscale/default.nix deleted file mode 100644 index 14753f4..0000000 --- a/modules/services/tailscale/default.nix +++ /dev/null @@ -1,15 +0,0 @@ -{ config, lib, ... }: -let cfg = config.my.services.tailscale; -in -{ - - options.my.services.tailscale = with lib; { - enable = mkEnableOption "tailscale configuration"; - }; - - config = lib.mkIf cfg.enable { - services.tailscale.enable = true; - networking.firewall.trustedInterfaces = [ "tailscale0" ]; - networking.firewall.checkReversePath = "loose"; - }; -} |