flake/modules/nixos/services/anubis.nix
2025-10-28 19:59:15 +03:00

14 lines
187 B
Nix

{
config,
lib,
...
}:
{
config = lib.mkMerge [
(lib.mkIf config.osbmModules.services.anubis.enable {
services.anubis = {
# enable = true;
};
})
];
}