make lib wrapper a single arg function

main
Zynh Ludwig 2024-07-08 17:07:15 -07:00
parent e1de2cc440
commit 0a0fb77cc0
2 changed files with 2 additions and 2 deletions

View File

@ -32,7 +32,7 @@
{ {
nixosConfigurations = nixosConfigurations =
let let
lib = import ./lib { inherit (nixpkgs) lib; }; lib = import ./lib nixpkgs.lib;
toPartialNixosConfig = toPartialNixosConfig =
{ hostname, system }: { hostname, system }:

View File

@ -1,4 +1,4 @@
{ lib, ... }: lib:
with lib; with lib;
rec { rec {
# Ternary operator # Ternary operator