my over complex system configurations dotfiles.isabelroses.com/
nixos nix flake dotfiles linux
9
fork

Configure Feed

Select the types of activity you want to include in your feed.

nixos/networking/tailscale: remove redunant lines

isabel b2994ebf da3c7e76

+1 -9
+1 -9
modules/nixos/networking/tailscale.nix
··· 1 - { 2 - lib, 3 - pkgs, 4 - config, 5 - ... 6 - }: 1 + { lib, config, ... }: 7 2 let 8 3 inherit (lib) 9 4 mkIf ··· 62 57 }; 63 58 64 59 config = mkIf cfg.enable { 65 - # make the tailscale command usable to users 66 - garden.packages = { inherit (pkgs) tailscale; }; 67 - 68 60 networking.firewall = { 69 61 # always allow traffic from your Tailscale network 70 62 trustedInterfaces = [ "${tailscale.interfaceName}" ];