Replace lib' with self.lib

This commit is contained in:
SebastianStork 2026-01-16 14:09:34 +01:00
parent 07c46beefb
commit 8ba17ac1ce
Signed by: SebastianStork
SSH key fingerprint: SHA256:iEM011ogNMG1q8+U500adGu/9rpPuZ2KnFtbdLeqTiI
10 changed files with 25 additions and 31 deletions

View file

@ -2,7 +2,6 @@
config,
self,
lib,
lib',
...
}:
let
@ -38,7 +37,7 @@ in
{ file, value }:
value
|> lib.map (domain: {
file = lib'.relativePath file;
file = self.lib.relativePath file;
inherit domain;
})
)

View file

@ -1,8 +1,8 @@
{
config,
options,
self,
lib,
lib',
...
}:
let
@ -31,7 +31,7 @@ in
{ file, value }:
value
|> lib.map (port: {
file = lib'.relativePath file;
file = self.lib.relativePath file;
inherit port;
})
)