Add wallabag to kernighan

This commit is contained in:
Trevor Vallender 2023-10-09 16:44:13 +01:00
parent 11d9ebee99
commit 2196c3d2bf
2 changed files with 18 additions and 0 deletions

View File

@ -11,6 +11,7 @@
../shared/services/miniflux.nix
../shared/services/nginx.nix
../shared/services/radicale.nix
../shared/services/wallabag.nix
];
networking = {

View File

@ -0,0 +1,17 @@
{ config, pkgs, inputs, ... }:
{
virtualisation.oci-containers.containers = {
wallabag = {
image = "wallabag/wallabag:2.6.7";
environment = {
SYMFONY__ENV__DOMAIN_NAME = "http://localhost";
};
volumes = [
"/opt/wallabag/data:/var/www/wallabag/data",
"/opt/wallabag/images:/var/www/wallabag/images",
];
};
};
}