mirror of
https://gitlab.com/upRootNutrition/dotfiles.git
synced 2025-08-08 21:04:38 -05:00
feat: removed podgrab
This commit is contained in:
parent
6f24d2a2ad
commit
400964fbee
3 changed files with 40 additions and 1 deletions
38
modules/config/instances/config/kanboard.nix
Normal file
38
modules/config/instances/config/kanboard.nix
Normal 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";
|
||||||
|
};
|
||||||
|
}
|
|
@ -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
|
||||||
;
|
;
|
||||||
};
|
};
|
||||||
|
|
|
@ -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
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue