nix-config/hosts/minime/uvm.nix

24 lines
475 B
Nix
Raw Normal View History

2025-01-12 21:32:36 +01:00
{ inputs, ... }:
{
microvm.stateDir = "/var/lib/microvms";
2025-01-21 17:39:25 +00:00
microvm.autostart = [
"auth"
"radicale"
"immich"
];
2025-01-12 21:32:36 +01:00
microvm.vms = {
auth = {
flake = inputs.self;
updateFlake = "github:gshipunov/nix-config/master";
};
radicale = {
2025-01-12 21:32:36 +01:00
flake = inputs.self;
updateFlake = "github:gshipunov/nix-config/master";
};
2025-01-21 17:39:25 +00:00
immich = {
flake = inputs.self;
updateFlake = "github:gshipunov/nix-config/master";
};
2025-01-12 21:32:36 +01:00
};
}