17 lines
247 B
Nix
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;
|
|
};
|
|
};
|
|
}
|