From 857b261c92179baab5e5166775d272875d9bd875 Mon Sep 17 00:00:00 2001 From: blahai Date: Fri, 25 Oct 2024 09:29:48 +0300 Subject: [PATCH] Theia: uptime kuma + new kernel --- hosts/theia/configuration.nix | 16 +++++++++++++++- 1 file changed, 15 insertions(+), 1 deletion(-) diff --git a/hosts/theia/configuration.nix b/hosts/theia/configuration.nix index 428ef5b..531f85a 100644 --- a/hosts/theia/configuration.nix +++ b/hosts/theia/configuration.nix @@ -15,6 +15,7 @@ "virtio_blk" ]; initrd.kernelModules = [ ]; + kernelPackages = pkgs.linuxPackages_latest; kernelModules = [ "kvm-amd" ]; extraModulePackages = [ ]; loader.grub = { @@ -41,7 +42,7 @@ }; networking = { - enableIPv6 = false; + enableIPv6 = false; # Had to disable for now due to problems with resolving firewall = { allowedTCPPorts = [ 80 # HTTP 443 # HTTPS @@ -97,6 +98,19 @@ reverse_proxy localhost:8888 ''; }; + + "status.blahai.gay" = { + extraConfig = '' + reverse_proxy localhost:3001 + ''; + }; + }; + }; + + uptime-kuma = { + enable = true; + settings = { + PORT = "3001"; }; };