aboutsummaryrefslogtreecommitdiff
path: root/modules/services/tailscale
diff options
context:
space:
mode:
authorFranck Cuny <franck@fcuny.net>2022-06-09 18:25:15 -0700
committerFranck Cuny <franck@fcuny.net>2022-06-09 18:32:25 -0700
commit39bbac4c6d4375df839e23172156236e9b2317d4 (patch)
tree95a7749e3b0dd610a00de0319539630df4a250e6 /modules/services/tailscale
parentfix(blog): set the correct URL to my git server (diff)
downloadinfra-39bbac4c6d4375df839e23172156236e9b2317d4.tar.gz
feat(nix): update nix to version 22.05
NixOS 22.05 was released last month. Bump the versions for both nixos and home-manager. I also need to make a few changes for this update work (packages were renamed, options were addded to tailscale, ...) Change-Id: I84ed9f21915b769c9f7b8e21988b2b021715c982 Reviewed-on: https://cl.fcuny.net/c/world/+/365 Tested-by: CI Reviewed-by: Franck Cuny <franck@fcuny.net>
Diffstat (limited to 'modules/services/tailscale')
-rw-r--r--modules/services/tailscale/default.nix1
1 files changed, 1 insertions, 0 deletions
diff --git a/modules/services/tailscale/default.nix b/modules/services/tailscale/default.nix
index cad1cad..73cf06b 100644
--- a/modules/services/tailscale/default.nix
+++ b/modules/services/tailscale/default.nix
@@ -9,5 +9,6 @@ in {
config = lib.mkIf cfg.enable {
services.tailscale.enable = true;
networking.firewall.trustedInterfaces = [ "tailscale0" ];
+ networking.firewall.checkReversePath = "loose";
};
}