re-enable tailscale, oops

This commit is contained in:
Motiejus Jakštys 2023-09-14 14:48:54 +03:00
parent 9eb8147660
commit fb3c39d7dc
3 changed files with 9 additions and 9 deletions

View File

@ -103,7 +103,6 @@
};
services = {
xserver = {
enable = true;
desktopManager.gnome.enable = true;

View File

@ -1,7 +1,7 @@
{
config,
lib,
pkgs,
lib,
pkgs,
...
}: {
imports = [

View File

@ -15,11 +15,12 @@
};
config = with config.mj.services.tailscale;
lib.mkIf enable {
lib.mkIf enable ({
services.tailscale.enable = true;
networking.firewall.checkReversePath = "loose"; # for tailscale
}
// lib.mkIf silenceLogs {
systemd.services.tailscale.serviceConfig."StandardOutput" = "null";
};
networking.firewall.checkReversePath = "loose";
networking.firewall.allowedUDPPorts = [41641];
#}
#// lib.mkIf silenceLogs {
# systemd.services.tailscaled.serviceConfig."StandardOutput" = "null";
});
}