components: drop celery, package manage.py instead

This commit is contained in:
WilliButz 2024-02-21 21:59:49 +01:00
parent 8edfcf318a
commit d85dacb6c2
No known key found for this signature in database
GPG key ID: AB05DF703EB9DC70
5 changed files with 21 additions and 18 deletions

View file

@ -29,7 +29,7 @@ pkgs.lib.makeScope pkgs.newScope (final:
inherit authentik-src;
};
# worker
celery = final.callPackage ./celery.nix {
manage = final.callPackage ./manage.nix {
};
in
{
@ -41,7 +41,7 @@ pkgs.lib.makeScope pkgs.newScope (final:
gopkgs
staticWorkdirDeps
migrate
celery;
manage;
};
inherit authentik-src authentik-version;
}