feat(tyr): add wallos.

This commit is contained in:
CronyAkatsuki 2025-09-25 09:55:28 +02:00
parent c1f2b975e1
commit ca9651efb8
2 changed files with 18 additions and 0 deletions

View file

@ -2,5 +2,6 @@
imports = [
./syncthing.nix
./glance.nix
./wallos.nix
];
}

View file

@ -0,0 +1,17 @@
{
virtualisation.oci-containers.containers.wallos = {
image = "bellamy/wallos:latest";
autoStart = true;
ports = [
"8282:80/tcp"
];
volumes = [
"/var/lib/wallos/db:/var/www/html/db"
"/var/lib/wallos/logos:/var/www/html/images/uploads/logos"
];
};
networking.firewall = {
allowedTCPPorts = [8282];
};
}