feat: add noisepics to server

This commit is contained in:
Jet 2026-03-18 17:03:28 -07:00
parent e91c4949d0
commit bb1b8ca33f
No known key found for this signature in database
4 changed files with 44 additions and 0 deletions

18
modules/noisepics.nix Normal file
View file

@ -0,0 +1,18 @@
{ 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;
};
};
}