immich: init

This commit is contained in:
Grigory Shipunov 2025-01-21 17:39:25 +00:00 committed by Grisha Shipunov
parent db13bc801c
commit 42aa8b3a78
10 changed files with 259 additions and 0 deletions

View file

@ -1,6 +1,11 @@
{ inputs, ... }:
{
microvm.stateDir = "/var/lib/microvms";
microvm.autostart = [
"auth"
"radicale"
"immich"
];
microvm.vms = {
auth = {
flake = inputs.self;
@ -10,5 +15,9 @@
flake = inputs.self;
updateFlake = "github:gshipunov/nix-config/master";
};
immich = {
flake = inputs.self;
updateFlake = "github:gshipunov/nix-config/master";
};
};
}