feat: Added discord and slack to linux

This commit is contained in:
uttarayan21
2025-05-14 23:14:17 +05:30
parent 46cc0bc90c
commit e9134e928a
6 changed files with 41 additions and 6 deletions

View File

@@ -1,9 +1,22 @@
{...}: {
{
pkgs,
lib,
...
}: {
services = {
tailscale = {
enable = true;
useRoutingFeatures = true;
useRoutingFeatures = "both";
extraUpFlags = ["--advertise-routes=192.168.0.0/24"];
};
networkd-dispatcher = {
enable = true;
rules."50-tailscale" = {
onState = ["routable"];
script = ''
${lib.getExe pkgs.ethtool} -K en01 rx-udp-gro-forwarding on rg-xgro-list off
'';
};
};
};
}