Fix lib functions taken from pkgs.lib instead of lib in nixos

This commit is contained in:
Shea Levy 2014-08-01 16:23:56 -04:00
parent b0c8769c84
commit 7fec575976
2 changed files with 3 additions and 3 deletions

View File

@ -31,7 +31,7 @@ in
{
options = {
extraWorkersProperties = pkgs.lib.mkOption {
extraWorkersProperties = lib.mkOption {
default = "";
description = "Additional configuration for the workers.properties file.";
};

View File

@ -1,6 +1,6 @@
{ config, pkgs, ... }:
{ config, pkgs, lib, ... }:
with pkgs.lib;
with lib;
let