chore: remove deprecated NixOS mirai configuration files

This commit is contained in:
uttarayan21
2025-12-08 17:24:28 +05:30
parent 497445c854
commit 597cf35a09
38 changed files with 6 additions and 1919 deletions

View File

@@ -1,4 +1,4 @@
{...}: {
{config, ...}: {
services = {
prowlarr = {
enable = true;
@@ -7,8 +7,12 @@
authentication_enabled = true;
authentication_method = "External";
};
server.port = 9696;
# server.port = 9696;
};
};
};
services.caddy.virtualHosts."prowlarr.darksailor.dev".extraConfig = ''
import auth
reverse_proxy localhost:${toString config.services.prowlarr.settings.server.port or "9696"}
'';
}