22 lines
293 B
Nix
22 lines
293 B
Nix
{
|
|
pkgs,
|
|
lib,
|
|
...
|
|
}:
|
|
{
|
|
my = {
|
|
utils = {
|
|
commons.enable = true;
|
|
lxc-standard.enable = true;
|
|
};
|
|
|
|
monitoring.uptime-kuma.enable = true;
|
|
|
|
virtualisation = {
|
|
proxmox.enable = true;
|
|
docker.enable = true;
|
|
};
|
|
};
|
|
|
|
system.stateVersion = "24.11";
|
|
}
|