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 = { services = {
xserver = { xserver = {
enable = true; enable = true;
desktopManager.gnome.enable = true; desktopManager.gnome.enable = true;

View File

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

View File

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