extend nixpkgs's lib instead

This commit is contained in:
2025-07-11 20:34:45 -07:00
parent 3ba8c1a5a6
commit 7f7dc03a20
11 changed files with 90 additions and 82 deletions

View File

@@ -1,14 +1,14 @@
{
pkgs,
lib,
config,
service_configs,
username,
serviceMountDeps,
...
}:
{
imports = [
(serviceMountDeps "gitea" [ config.services.gitea.stateDir ] pkgs)
(lib.serviceMountDeps "gitea" [ config.services.gitea.stateDir ])
];
services.gitea = {