mirror of
https://github.com/TheWanderingCrow/CrOS.git
synced 2026-01-15 03:24:10 -05:00
17 lines
360 B
Nix
17 lines
360 B
Nix
{
|
|
lib,
|
|
config,
|
|
...
|
|
}:
|
|
lib.mkIf config.user.overseer.enable {
|
|
sops.secrets."bookstack/key" = {
|
|
owner = "bookstack";
|
|
};
|
|
|
|
services.bookstack = {
|
|
enable = true;
|
|
hostname = "bookstack.wanderingcrow.net";
|
|
database.createLocally = true;
|
|
appKeyFile = config.sops.secrets."bookstack/key".path;
|
|
};
|
|
}
|