configurations for my servers and desktops
nix nixos flake dots dotfiles

fix: oops

+9 -1
+9 -1
hosts/bluepill-proxy/services/tailscale.nix
··· 4 4 "net.ipv6.conf.all.forwarding" = 1; 5 5 }; 6 6 7 - networking.interfaces.ens6.ethtool.gro = true; 7 + systemd.services.enable-gro = { 8 + description = "enable gro on ens6"; 9 + after = ["network.target"]; 10 + serviceConfig = { 11 + Type = "oneshot"; 12 + ExecStart = "/sbin/ethtool -K ens6 gro on"; 13 + }; 14 + wantedBy = ["multi-user.target"]; 15 + }; 8 16 9 17 services.tailscale.enable = true; 10 18 }