From 5e2e2c8ccc0f6937924a5746ba3e999e93af64c4 Mon Sep 17 00:00:00 2001 From: Kabbone Date: Fri, 23 Dec 2022 15:55:39 +0100 Subject: [PATCH] apps: fix tailscale --- hosts/laptop/hardware-configuration.nix | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/hosts/laptop/hardware-configuration.nix b/hosts/laptop/hardware-configuration.nix index f04e3e6..523a105 100644 --- a/hosts/laptop/hardware-configuration.nix +++ b/hosts/laptop/hardware-configuration.nix @@ -87,6 +87,7 @@ swapDevices = [ ]; + networking = { useDHCP = false; # Deprecated hostName = "nbf5"; @@ -109,11 +110,12 @@ }; #defaultGateway = "192.168.0.1"; #nameservers = [ "192.168.0.4" ]; - #firewall = { + firewall = { + checkReversePath = "loose"; # enable = false; # #allowedUDPPorts = [ 53 67 ]; # #allowedTCPPorts = [ 53 80 443 9443 ]; - #}; + }; }; hardware.cpu.intel.updateMicrocode = lib.mkDefault config.hardware.enableRedistributableFirmware;