summaryrefslogtreecommitdiff
path: root/hosts/minime/uvm.nix
blob: 437f8733ae29a4a66c4c72b37ee61ed4ed79841c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
{ inputs, ... }:
{
  microvm.stateDir = "/var/lib/microvms";
  microvm.autostart = [
    "auth"
    "radicale"
    "immich"
  ];
  microvm.vms = {
    auth = {
      flake = inputs.self;
      updateFlake = "github:gshipunov/nix-config/master";
    };
    radicale = {
      flake = inputs.self;
      updateFlake = "github:gshipunov/nix-config/master";
    };
    immich = {
      flake = inputs.self;
      updateFlake = "github:gshipunov/nix-config/master";
    };
  };
}