From 23e84aadf1abb91291ac84f4b950e4e1f2e85c7f Mon Sep 17 00:00:00 2001 From: aszlig Date: Sat, 4 Apr 2015 00:39:06 +0200 Subject: Remove references to pkgs.lib within modules. We now no longer can (or even should) refer to pkgs.lib within modules since the merge of the module system improvements in NixOS/nixpkgs@889f72b. Signed-off-by: aszlig --- machines/aszlig/arilou.nix | 4 ++-- machines/aszlig/tishtushi.nix | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) (limited to 'machines/aszlig') diff --git a/machines/aszlig/arilou.nix b/machines/aszlig/arilou.nix index 94efda36..96edf39c 100644 --- a/machines/aszlig/arilou.nix +++ b/machines/aszlig/arilou.nix @@ -1,6 +1,6 @@ -{ config, pkgs, ... }: +{ config, pkgs, lib, ... }: -with pkgs.lib; +with lib; let rootUUID = "e9c95c74-e4cf-41f6-bb45-baf8dd579217"; diff --git a/machines/aszlig/tishtushi.nix b/machines/aszlig/tishtushi.nix index 9e674709..81fbbf37 100644 --- a/machines/aszlig/tishtushi.nix +++ b/machines/aszlig/tishtushi.nix @@ -1,6 +1,6 @@ -{ config, pkgs, ... }: +{ config, pkgs, lib, ... }: -with pkgs.lib; +with lib; let rootUUID = "e33a3dda-a87d-473b-b113-37783aa35667"; -- cgit 1.4.1