mirror of
https://github.com/TheWanderingCrow/CrOS.git
synced 2026-01-30 10:04:18 -05:00
15 lines
326 B
Nix
15 lines
326 B
Nix
{
|
|
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;
|
|
};
|
|
}
|