feat: removed podgrab

This commit is contained in:
Nick 2025-06-22 14:38:22 -05:00
parent 6f24d2a2ad
commit 400964fbee
3 changed files with 40 additions and 1 deletions

View file

@ -0,0 +1,38 @@
{ instancesFunctions }:
let
inherit (instancesFunctions)
domain0
servicePath
sslPath
sopsPath
;
label = "Kanboard";
name = "kanboard";
subdomain = "todo";
domain = "${subdomain}.${domain0}";
in
{
label = label;
name = name;
email = {
address0 = "noreply@${name}.${domain0}";
};
sops = {
path0 = "${sopsPath}/${name}";
};
domains = {
url0 = domain;
};
subdomain = subdomain;
paths = {
path0 = "${servicePath}/${label}";
};
ports = {
port0 = 3128;
};
ssl = {
cert = "${sslPath}/${subdomain}.${domain0}/fullchain.pem";
key = "${sslPath}/${subdomain}.${domain0}/key.pem";
};
}

View file

@ -82,7 +82,6 @@ in
logrotate logrotate
mastodon mastodon
minecraft minecraft
podgrab
ollama ollama
website website
postgresql postgresql
@ -91,6 +90,7 @@ in
vaultwarden vaultwarden
forgejo forgejo
xserver xserver
# podgrab
# kanboard # kanboard
; ;
}; };

View file

@ -9,6 +9,7 @@ let
(podcastHelper "https://sigmanutrition.libsyn.com/rss/" "Sigma Nutrition Radio") (podcastHelper "https://sigmanutrition.libsyn.com/rss/" "Sigma Nutrition Radio")
(podcastHelper "https://wakingup.libsyn.com/rss" "Making Sense with Sam Harris") (podcastHelper "https://wakingup.libsyn.com/rss" "Making Sense with Sam Harris")
(podcastHelper "https://feeds.simplecast.com/uNKL_XD_" "Docs Who Lift") (podcastHelper "https://feeds.simplecast.com/uNKL_XD_" "Docs Who Lift")
(podcastHelper "https://feeds.redcircle.com/677da6c9-d33f-49df-95d7-dc8821b797b4" "Mayo Clinic on Nutrition")
]; ];
podcastEntries = builtins.map (podcast: podcast) podcastData; podcastEntries = builtins.map (podcast: podcast) podcastData;
in in