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

@@ -3,12 +3,12 @@
config,
username,
service_configs,
serviceMountDeps,
lib,
...
}:
{
imports = [
(serviceMountDeps "postgresql" [ config.services.postgresql.dataDir ] pkgs)
(lib.serviceMountDeps "postgresql" [ config.services.postgresql.dataDir ])
];
services.postgresql = {