14 lines
300 B
Nix
14 lines
300 B
Nix
{ inputs, ... }:
|
|
{
|
|
microvm.stateDir = "/var/lib/microvms";
|
|
microvm.vms = {
|
|
auth = {
|
|
flake = inputs.self;
|
|
updateFlake = "github:gshipunov/nix-config/master";
|
|
};
|
|
radicale = {
|
|
flake = inputs.self;
|
|
updateFlake = "github:gshipunov/nix-config/master";
|
|
};
|
|
};
|
|
}
|