Removed comments and format
This commit is contained in:
parent
8b25f46384
commit
e0a09e90a7
7 changed files with 85 additions and 305 deletions
|
|
@ -1,7 +1,6 @@
|
|||
{
|
||||
imports = [
|
||||
./download-pod.nix
|
||||
./download-pod-old.nix
|
||||
./nextcloud-podman.nix
|
||||
];
|
||||
}
|
||||
|
|
|
|||
|
|
@ -1,154 +0,0 @@
|
|||
{
|
||||
lib,
|
||||
config,
|
||||
pkgs,
|
||||
...
|
||||
}:
|
||||
let
|
||||
cfg = config.my.services.download-pod-old;
|
||||
in
|
||||
{
|
||||
options.my.services.download-pod-old = {
|
||||
enable = lib.mkEnableOption "Enable download services module";
|
||||
|
||||
proxy = {
|
||||
enable = lib.mkEnableOption "Enable proxy for the services";
|
||||
|
||||
hostName = lib.mkOption {
|
||||
default = "example.com";
|
||||
type = lib.types.str;
|
||||
description = ''
|
||||
Top level hostname
|
||||
'';
|
||||
};
|
||||
|
||||
serverName = lib.mkOption {
|
||||
default = "localhost";
|
||||
type = lib.types.str;
|
||||
description = ''
|
||||
Server name where Caddy is
|
||||
'';
|
||||
};
|
||||
|
||||
};
|
||||
|
||||
dataDir = lib.mkOption {
|
||||
default = "/mnt/data";
|
||||
type = lib.types.str;
|
||||
description = ''
|
||||
Base download dir for stuff
|
||||
'';
|
||||
};
|
||||
|
||||
};
|
||||
|
||||
config = lib.mkIf cfg.enable {
|
||||
my.virtualisation.podman.enable = true;
|
||||
|
||||
systemd.services.pod-download = {
|
||||
description = "Start podman 'download' pod";
|
||||
wants = [ "network-online.target" ];
|
||||
after = [ "network-online.target" ];
|
||||
requiredBy = [
|
||||
"podman-jackett.service"
|
||||
"podman-radarr.service"
|
||||
"podman-sabnzbd.service"
|
||||
"podman-sonarr.service"
|
||||
];
|
||||
unitConfig = {
|
||||
RequiresMountsFor = "/run/containers";
|
||||
};
|
||||
serviceConfig = {
|
||||
Type = "oneshot";
|
||||
ExecStart = "-${pkgs.podman}/bin/podman pod create -p 9117:9117 -p 7878:7878 -p 8080:8080 -p 8989:8989 download";
|
||||
}; # -p 9117:9117 -p 7878:7878 -p 8080:8080 -p 8989:8989
|
||||
#--share cgroup,ipc,uts
|
||||
path = [ pkgs.podman ];
|
||||
};
|
||||
|
||||
virtualisation.oci-containers.containers = {
|
||||
jackett = {
|
||||
image = "linuxserver/jackett";
|
||||
autoStart = true;
|
||||
user = "1000:100";
|
||||
ports = [ "9117:9117" ];
|
||||
extraOptions = [
|
||||
"--init=true"
|
||||
"--pod=download"
|
||||
];
|
||||
volumes = [
|
||||
"jackett_config:/config"
|
||||
"${cfg.dataDir}:/data"
|
||||
];
|
||||
};
|
||||
|
||||
radarr = {
|
||||
image = "linuxserver/radarr";
|
||||
autoStart = true;
|
||||
user = "1000:100";
|
||||
ports = [ "7878:7878" ];
|
||||
extraOptions = [
|
||||
"--init=true"
|
||||
"--pod=download"
|
||||
];
|
||||
volumes = [
|
||||
"radarr_config:/config"
|
||||
"${cfg.dataDir}:/data"
|
||||
];
|
||||
};
|
||||
|
||||
sabnzbd = {
|
||||
image = "linuxserver/sabnzbd";
|
||||
autoStart = true;
|
||||
user = "1000:100";
|
||||
ports = [ "8080:8080" ];
|
||||
extraOptions = [
|
||||
"--init=true"
|
||||
"--pod=download"
|
||||
];
|
||||
volumes = [
|
||||
"sabnzbd_config:/config"
|
||||
"${cfg.dataDir}:/data"
|
||||
];
|
||||
};
|
||||
|
||||
sonarr = {
|
||||
image = "linuxserver/sonarr";
|
||||
autoStart = true;
|
||||
user = "1000:100";
|
||||
ports = [ "8989:8989" ];
|
||||
extraOptions = [
|
||||
"--init=true"
|
||||
"--pod=download"
|
||||
];
|
||||
volumes = [
|
||||
"sonarr_config:/config"
|
||||
"${cfg.dataDir}:/data"
|
||||
];
|
||||
};
|
||||
|
||||
};
|
||||
|
||||
services.caddy = lib.mkIf cfg.proxy.enable {
|
||||
enable = true;
|
||||
enableReload = false;
|
||||
virtualHosts = {
|
||||
"jackett.${cfg.proxy.hostName}".extraConfig = ''
|
||||
reverse_proxy http://${cfg.proxy.serverName}:9117
|
||||
'';
|
||||
"radarr.${cfg.proxy.hostName}".extraConfig = ''
|
||||
reverse_proxy http://${cfg.proxy.serverName}:7878
|
||||
'';
|
||||
"sabnzbd.${cfg.proxy.hostName}".extraConfig = ''
|
||||
reverse_proxy http://${cfg.proxy.serverName}:8080
|
||||
'';
|
||||
"sonarr.${cfg.proxy.hostName}".extraConfig = ''
|
||||
reverse_proxy http://${cfg.proxy.serverName}:8989
|
||||
'';
|
||||
};
|
||||
|
||||
};
|
||||
|
||||
};
|
||||
|
||||
}
|
||||
|
|
@ -72,57 +72,6 @@ in
|
|||
|
||||
virtualisation.oci-containers.containers = enabledContainers containers;
|
||||
|
||||
# virtualisation.oci-containers.containers = {
|
||||
|
||||
# jackett = {
|
||||
# image = "linuxserver/jackett";
|
||||
# autoStart = true;
|
||||
# extraOptions = [ "--pod=my-pod" ];
|
||||
# volumes = [
|
||||
# "jackett_config:/config"
|
||||
# "jackett_data:/data"
|
||||
# ];
|
||||
# };
|
||||
|
||||
# radarr = {
|
||||
# image = "linuxserver/radarr";
|
||||
# autoStart = true;
|
||||
# extraOptions = [ "--pod=download" ];
|
||||
# volumes = [
|
||||
# "radarr_config:/config"
|
||||
# "radarr_data:/data"
|
||||
# ];
|
||||
# };
|
||||
|
||||
# sabnzbd = {
|
||||
# image = "linuxserver/sabnzbd";
|
||||
# autoStart = true;
|
||||
# extraOptions = [ "--pod=download" ];
|
||||
# volumes = [
|
||||
# "sabnzbd_config:/config"
|
||||
# "sabnzbd_data:/data"
|
||||
# ];
|
||||
# };
|
||||
|
||||
# sonarr = {
|
||||
# image = "linuxserver/sonarr";
|
||||
# autoStart = true;
|
||||
# extraOptions = [ "--pod=download" ];
|
||||
# volumes = [
|
||||
# "sonarr_config:/config"
|
||||
# "sonarr_data:/data"
|
||||
# ];
|
||||
# };
|
||||
|
||||
# prowlarr = {
|
||||
# image = "linuxserver/prowlarr";
|
||||
# autoStart = true;
|
||||
# extraOptions = [ "--pod=download" ];
|
||||
# volumes = [ "prowlarr_config:/config" ];
|
||||
# };
|
||||
|
||||
# };
|
||||
|
||||
services.caddy = lib.mkIf cfg.proxy.enable {
|
||||
enable = true;
|
||||
enableReload = false;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue