[Wallabag] Adds wallabag

This commit is contained in:
2026-02-24 16:21:23 -08:00
parent 13f301c4fb
commit a4bb91e68e
2 changed files with 20 additions and 0 deletions

View File

@@ -6,5 +6,6 @@
# ./immich.nix # ./immich.nix
./storyden.nix ./storyden.nix
./tandoor.nix ./tandoor.nix
./wallabag.nix
]; ];
} }

View File

@@ -0,0 +1,19 @@
{ config, ... }:
let
inherit (import ../lib.nix config) havenisms;
in
{
virtualisation.web-containers.containers.wallabag = {
image = "wallabag/wallabag";
hostname = "wallabag";
domain = havenisms;
port = 80;
volumes = [
"wallabag-data:/var/www/wallabag/data"
"wallabag-images:/var/www/wallabag/web/assets/images"
];
environment = {
SYMFONY__ENV__DOMAIN_NAME = "https://wallabag.${havenisms}";
};
};
}