nix-infra/config/hosts/valkyrie/containers/uptime-kuma/default.nix

15 lines
251 B
Nix
Raw Normal View History

2023-09-16 20:05:33 +02:00
{ nixpkgs-unstable, ... }:
{
containers.uptime-kuma = {
nixpkgs = nixpkgs-unstable;
autoStart = true;
config = { ... }: {
services.uptime-kuma = {
enable = true;
};
system.stateVersion = "23.05";
};
};
}