Files
hearth/nixos/system/hectic-lab/immich.nix
T
yukkop 1e973e7b33
runner nix smoke / nix label and flake smoke (push) Failing after 25s
feat: configure immich
2026-09-12 22:21:33 +00:00

17 lines
247 B
Nix

{ domain, ... }:
{
config,
...
}:
{
hectic.services.immich = {
enable = true;
domain = "immich.${domain}";
storageBox = {
enable = true;
credentialsFile = config.sops.secrets."immich/storage-box".path;
};
};
}