tangled
alpha
login
or
join now
devins.page
/
flake
0
fork
atom
configurations for my servers and desktops
nix
nixos
flake
dots
dotfiles
0
fork
atom
overview
issues
pulls
pipelines
fix: oops
devins.page
3 months ago
0568eb6a
1a493750
+9
-1
1 changed file
expand all
collapse all
unified
split
hosts
bluepill-proxy
services
tailscale.nix
+9
-1
hosts/bluepill-proxy/services/tailscale.nix
···
4
4
"net.ipv6.conf.all.forwarding" = 1;
5
5
};
6
6
7
7
-
networking.interfaces.ens6.ethtool.gro = true;
7
7
+
systemd.services.enable-gro = {
8
8
+
description = "enable gro on ens6";
9
9
+
after = ["network.target"];
10
10
+
serviceConfig = {
11
11
+
Type = "oneshot";
12
12
+
ExecStart = "/sbin/ethtool -K ens6 gro on";
13
13
+
};
14
14
+
wantedBy = ["multi-user.target"];
15
15
+
};
8
16
9
17
services.tailscale.enable = true;
10
18
}