18 lines
418 B
Nix
18 lines
418 B
Nix
{ config, inputs, ... }:
|
|
|
|
{
|
|
age.secrets.noisepics-storagebox = {
|
|
file = "${inputs.noisepics}/secrets/noisepics-storagebox.age";
|
|
mode = "0400";
|
|
};
|
|
|
|
services.noisepics = {
|
|
enable = true;
|
|
domain = "noisepics.extremist.software";
|
|
storagebox = {
|
|
enable = true;
|
|
address = "u563838.your-storagebox.de";
|
|
credentialsFile = config.age.secrets.noisepics-storagebox.path;
|
|
};
|
|
};
|
|
}
|