Service for private Il Post podcast RSS feed
This commit is contained in:
parent
8d8a5ef0fe
commit
ade6e6ac83
7 changed files with 218 additions and 0 deletions
|
|
@ -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;
|
||||
|
|
|
|||
|
|
@ -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"
|
||||
];
|
||||
};
|
||||
|
||||
|
|
|
|||
23
hosts/ilpost-podcast/default.nix
Normal file
23
hosts/ilpost-podcast/default.nix
Normal 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";
|
||||
}
|
||||
|
|
@ -10,6 +10,8 @@
|
|||
|
||||
services.n8n.enable = true;
|
||||
|
||||
services.ilpost-addict.enable = true;
|
||||
|
||||
utils = {
|
||||
commons.enable = true;
|
||||
commons.gc.enable = true;
|
||||
|
|
|
|||
|
|
@ -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}";
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue