Enable Tailscale

This commit is contained in:
Dave Gallant
2021-08-22 23:02:34 -04:00
parent 97cecbeaf0
commit bc919c7472
2 changed files with 6 additions and 4 deletions

View File

@@ -30,7 +30,6 @@
./common/fonts.nix
./common/linux.nix
./common/netdata/default.nix
./common/changedetection.io/default.nix
./common/opensnitch/default.nix
./common/networking.nix
./common/packages.nix

View File

@@ -17,15 +17,18 @@
};
firewall = {
allowedTCPPorts = [
6080 # hound
8001 # datasette
19999 # netdata
];
allowedUDPPorts = [
41641 # tailscale
];
};
};
# Enable the OpenSSH server.
services.sshd.enable = true;
services.tailscale = { enable = true; };
services.xserver.videoDrivers = [ "nvidia" ];
}