21 lines
483 B
Nix
21 lines
483 B
Nix
{ 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"
|
|
];
|
|
};
|
|
}
|