Service for private Il Post podcast RSS feed

This commit is contained in:
pazpi 2025-12-08 00:08:29 +01:00
parent 8d8a5ef0fe
commit ade6e6ac83
7 changed files with 218 additions and 0 deletions

View file

@ -68,6 +68,12 @@ in
host = p.hosts.n8n;
};
ilpost-addict.proxy = {
enable = true;
domain = p.domains.public;
host = p.hosts.ilpost-podcast;
};
media-mgr.proxy = {
enable = true;
domain = p.domains.public;

View file

@ -91,6 +91,15 @@
];
};
ilpost-podcast = {
module = ./ilpost-podcast;
tags = [
"lxc"
"bacco"
"secondary"
];
};
immich = {
module = ./immich;
tags = [
@ -115,6 +124,7 @@
"lxc"
"bacco"
"n8n"
"secondary"
];
};
@ -151,6 +161,7 @@
"lxc"
"bacco"
"portainer"
"secondary"
];
};
@ -160,6 +171,7 @@
"lxc"
"bacco"
"shadowsocks"
"secondary"
];
};
@ -179,6 +191,7 @@
"lxc"
"bacco"
"zigbee2mqtt"
"secondary"
];
};

View file

@ -0,0 +1,23 @@
{
config,
pkgs,
lib,
...
}:
{
my = {
services.ilpost-addict.enable = true;
utils = {
commons.enable = true;
commons.gc.enable = true;
lxc-standard.enable = true;
};
virtualisation.proxmox.enable = true;
};
system.stateVersion = "25.11";
}

View file

@ -10,6 +10,8 @@
services.n8n.enable = true;
services.ilpost-addict.enable = true;
utils = {
commons.enable = true;
commons.gc.enable = true;

View file

@ -31,6 +31,7 @@ in
forgejo = "forgejo.${private-domain}";
forgejo-runner = "forgejo-runner.${private-domain}";
n8n = "n8n.${private-domain}";
ilpost-podcast = "ilpost-podcast.${private-domain}";
};
email = "davide@${public-domain}";
}