nixos/modules/server/fedi/akkoma.nix

17 lines
299 B
Nix
Raw Normal View History

2025-01-02 12:27:19 +04:00
{ 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;
};
};
};
}