todo finish akkoma module

This commit is contained in:
Sakooooo 2025-01-02 12:27:19 +04:00
parent fb4d5ee3cb
commit b2850711bd
Signed by: sako
GPG key ID: 3FD715D87D7725E0
2 changed files with 21 additions and 1 deletions

View file

@ -0,0 +1,16 @@
{ config, lib, ... }:
with lib;
let cfg = config.void.server.fedi.akkoma;
in {
options.void.server.fedi.akkoma = { enable = mkEnableOption false; };
# :(
config = mkIf cfg.enable {
services = {
akkoma = {
enable = true;
package = pkgs.akkoma;
};
};
};
}

View file

@ -8,7 +8,7 @@ in {
services.postgresql = {
enable = true;
package = pkgs.postgresql_17_jit;
ensureDatabases = [ "forgejo" ];
ensureDatabases = [ "forgejo" "akkoma" ];
ensureUsers = [
{
name = "postgres";
@ -24,6 +24,10 @@ in {
name = "forgejo";
ensureDBOwnership = true;
}
{
name = "akkoma";
ensureDBOwnership = true;
}
];
# Thank you NotAShelf
# https://github.com/NotAShelf/nyx/blob/d407b4d6e5ab7f60350af61a3d73a62a5e9ac660/modules/core/roles/server/system/services/databases/postgresql.nix#L74