make lib wrapper a single arg function
This commit is contained in:
parent
e1de2cc440
commit
0a0fb77cc0
2 changed files with 2 additions and 2 deletions
|
@ -32,7 +32,7 @@
|
|||
{
|
||||
nixosConfigurations =
|
||||
let
|
||||
lib = import ./lib { inherit (nixpkgs) lib; };
|
||||
lib = import ./lib nixpkgs.lib;
|
||||
|
||||
toPartialNixosConfig =
|
||||
{ hostname, system }:
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
{ lib, ... }:
|
||||
lib:
|
||||
with lib;
|
||||
rec {
|
||||
# Ternary operator
|
||||
|
|
Loading…
Reference in a new issue