15 lines
251 B
Nix
15 lines
251 B
Nix
|
{ nixpkgs-unstable, ... }:
|
||
|
{
|
||
|
containers.uptime-kuma = {
|
||
|
nixpkgs = nixpkgs-unstable;
|
||
|
autoStart = true;
|
||
|
config = { ... }: {
|
||
|
services.uptime-kuma = {
|
||
|
enable = true;
|
||
|
};
|
||
|
|
||
|
system.stateVersion = "23.05";
|
||
|
};
|
||
|
};
|
||
|
}
|