Add valkyrie host

This commit is contained in:
fi 2024-11-20 05:46:40 +01:00
parent fd7b411ee4
commit e35df8b0f1
12 changed files with 211 additions and 26 deletions

View file

@ -0,0 +1,14 @@
{ nixpkgs-unstable, ... }:
{
containers.uptime-kuma = {
nixpkgs = nixpkgs-unstable;
autoStart = true;
config = { ... }: {
services.uptime-kuma = {
enable = true;
};
system.stateVersion = "23.05";
};
};
}