nix-flakes/hosts/server/hikari/hako/services/attic.nix
2026-08-26 14:37:00 +09:00

21 lines
359 B
Nix

{
services.atticd = {
enable = true;
# Replace with absolute path to your environment file
environmentFile = "/etc/atticd.env";
settings = {
listen = "[::]:8080";
jwt = { };
database.url = "postgresql:///attic?user=atticd";
storage = {
type = "local";
path = "/mnt/attic";
};
};
};
}