From 91f895b3d660560e40278b1c4e8c50172f3ac065 Mon Sep 17 00:00:00 2001 From: Shea Levy Date: Wed, 14 May 2014 15:06:57 -0400 Subject: [PATCH] hydra-module.nix: Take lib from the module system, not from pkgs --- hydra-module.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/hydra-module.nix b/hydra-module.nix index 672b2617..86413857 100644 --- a/hydra-module.nix +++ b/hydra-module.nix @@ -1,6 +1,6 @@ -{ config, pkgs, ... }: +{ config, pkgs, lib ? pkgs.lib, ... }: -with pkgs.lib; +with lib; let cfg = config.services.hydra;