Merge pull request #5018 from ip1981/patch-1

Use lib instead of pkgs.lib
This commit is contained in:
Aristid Breitkreuz 2014-11-17 22:15:12 +01:00
commit bdd36c49c2

View file

@ -1,4 +1,4 @@
{ config, pkgs, ... }:
{ config, pkgs, lib, ... }:
let
cfg = config.services.crashplan;
@ -6,7 +6,7 @@ let
varDir = "/var/lib/crashplan";
in
with pkgs.lib;
with lib;
{
options = {
@ -60,4 +60,4 @@ with pkgs.lib;
};
};
};
}
}