add bookstack

This commit is contained in:
TheWanderingCrow 2025-01-25 16:58:38 -05:00
parent 59740b07ed
commit b3913a9337
3 changed files with 20 additions and 4 deletions

View file

@ -0,0 +1,15 @@
{
lib,
config,
...
}:
lib.mkIf config.user.overseer.enable {
sops.secrets."bookstack/key" = {};
services.bookstack = {
enable = true;
hostname = "bookstack.wanderingcrow.net";
database.createLocally = true;
appKeyFile = config.sops.secrets."bookstack/key".path;
};
}

View file

@ -8,5 +8,6 @@
./homebox.nix
./homepage.nix
./invidious.nix
./bookstack.nix
];
}