mirror of
https://github.com/SebastianStork/nixos-config.git
synced 2026-01-21 17:31:34 +01:00
Replace lib' with self.lib
This commit is contained in:
parent
07c46beefb
commit
8ba17ac1ce
10 changed files with 25 additions and 31 deletions
|
|
@ -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;
|
||||
})
|
||||
)
|
||||
|
|
|
|||
|
|
@ -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;
|
||||
})
|
||||
)
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue