Changed irc service

This commit is contained in:
Luj 2022-05-25 07:34:01 +02:00
parent a56bbe1f2b
commit 234cd1d1fc
Signed by: luj
GPG key ID: 6FC74C847011FD83
2 changed files with 43 additions and 25 deletions

View file

@ -51,7 +51,6 @@
};
# make the tailscale command usable to users
environment.systemPackages = [ pkgs.tailscale ];
@ -59,7 +58,7 @@
services.tailscale.enable = true;
nix.maxJobs = lib.mkDefault 4;
nix.maxJobs = lib.mkDefault 6;
boot.binfmt.emulatedSystems = [ "aarch64-linux" ];
services.fail2ban.enable = true;
@ -89,17 +88,36 @@
services.zfs.autoSnapshot.enable = true;
services.zfs.autoScrub.enable = true;
system.stateVersion = "21.11";
networking.wireguard.interfaces = {
wg0 = {
ips = [ "fd85:27e8:fc9::6/128" ];
listenPort = 51820;
privateKeyFile = "/root/wg-private";
peers = [
{
allowedIPs = [ "fd85:27e8:fc9::/48" ];
publicKey = "ZO8j0AwssAERtyJQO+o11pWAFKzkxTI5hmqHsfEy5Bo=";
endpoint = "core01.rz.ens.wtf:51820";
persistentKeepalive = 25;
}
];
};
};
networking.firewall.allowedTCPPorts = [ 51821 ];
networking.firewall.allowedUDPPorts = [ 51821 ];
services.nginx.virtualHosts."jellyfin.mondon.me" = {
enableACME = true;
forceSSL = true;
locations."/" = {
proxyWebsockets = true;
proxyPass = "http://100.74.49.77";
proxyPass = "https://100.74.49.77";
};
};
system.stateVersion = "21.11";
}