added tailwind config

This commit is contained in:
Harry 2024-08-09 12:35:21 +02:00
parent 2ae6dc0a6a
commit aeffbda3ce
2 changed files with 15 additions and 0 deletions

View file

@ -43,6 +43,7 @@
extraGroups = [
"wheel"
"dialout"
"docker"
]; # Enable sudo for the user.
packages = with pkgs; [

View file

@ -108,6 +108,8 @@ in
homepage-dashboard
slskd
bazarr
ethtool
networkd-dispatcher
];
services.jellyfin = {
@ -117,5 +119,17 @@ in
services.tailscale = {
enable = true;
useRoutingFeatures = "server";
};
services = {
networkd-dispatcher = {
enable = true;
rules."50-tailscale" = {
onState = ["routable"];
script = ''
${pkgs.ethtool}/bin/ethtool -K ens18 rx-udp-gro-forwarding on rx-gro-list off
'';
};
};
};
}