add anubis

This commit is contained in:
Osman Faruk Bayram 2025-10-28 18:54:14 +03:00
parent 83411ed26d
commit b87a58c1cf
3 changed files with 19 additions and 1 deletions

View file

@ -0,0 +1,14 @@
{
config,
lib,
...
}:
{
config = lib.mkMerge [
(lib.mkIf config.osbmModules.services.anubis.enable {
services.anubis = {
enable = true;
};
})
];
}