[mcp] Updates to 25.05 and adds FreshRSS. Removes Focalboard and Bookstack

This commit is contained in:
2025-05-20 20:21:51 -07:00
parent f2875caabb
commit a219966688
4 changed files with 39 additions and 91 deletions

View File

@@ -0,0 +1,20 @@
{ config, ... }:
let
inherit (import ./lib.nix config) mkContainer havenisms;
in {
virtualisation.oci-containers.containers.freshrss = mkContainer {
image = "lscr.io/linuxserver/freshrss:latest";
hostName = "freshrss";
domain = havenisms;
port = "80";
homepageOpts = {
group = "Apps";
name = "FreshRSS";
icon = "freshrss.svg";
description = "Feed aggregator";
};
volumes = [
"/tank/config/freshrss:/config"
];
};
}