16 lines
292 B
Nix
16 lines
292 B
Nix
{ config, ... }:
|
|
let
|
|
inherit (import ../lib.nix config) blazestar;
|
|
in
|
|
{
|
|
virtualisation.web-containers.containers.uptime = {
|
|
image = "louislam/uptime-kuma:1";
|
|
hostname = "uptime";
|
|
domain = blazestar;
|
|
port = 3001;
|
|
volumes = [
|
|
"uptime-kuma:/app/data"
|
|
];
|
|
};
|
|
}
|