fixed infinite recursion
This commit is contained in:
parent
6bbccc4f5a
commit
22caf58184
|
@ -1,21 +1,35 @@
|
|||
{lib, ...}: let
|
||||
{
|
||||
lib,
|
||||
nixpkgs,
|
||||
...
|
||||
}: let
|
||||
host = "127.0.0.1";
|
||||
port = 8989;
|
||||
in {
|
||||
imports = [
|
||||
(lib.extensions.createVm {name = "Sonarr VM";} {
|
||||
microvm.vms."sonarr" = {
|
||||
pkgs = import nixpkgs {system = nixpkgs.system;};
|
||||
microvm.hyprvisor = "cloud-hyprvisor";
|
||||
microvm.shares = [
|
||||
{
|
||||
tag = "ro-store";
|
||||
source = "/nix/store";
|
||||
mountPoint = "/nix/.ro-store";
|
||||
}
|
||||
];
|
||||
|
||||
config = {
|
||||
services.sonarr = {
|
||||
enable = true;
|
||||
openFirewall = false; # Hide sonarr behind firewall
|
||||
openFirewall = true; # Hide sonarr behind firewall
|
||||
};
|
||||
|
||||
services.nginx.virtualHosts."git.spoodythe.one" = {
|
||||
services.nginx.virtualHosts."sonarr.spoodythe.one" = {
|
||||
addSSL = true;
|
||||
enableACME = true;
|
||||
locations."/" = {
|
||||
proxyPass = "http://${host}:${toString port}";
|
||||
};
|
||||
};
|
||||
})
|
||||
];
|
||||
};
|
||||
};
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue