hydra-module.nix: Take lib from the module system, not from pkgs

This commit is contained in:
Shea Levy 2014-05-14 15:06:57 -04:00
parent 268f273a3e
commit 91f895b3d6

View file

@ -1,6 +1,6 @@
{ config, pkgs, ... }: { config, pkgs, lib ? pkgs.lib, ... }:
with pkgs.lib; with lib;
let let
cfg = config.services.hydra; cfg = config.services.hydra;