mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-02-19 18:44:13 +00:00
Merge pull request #5018 from ip1981/patch-1
Use lib instead of pkgs.lib
This commit is contained in:
commit
bdd36c49c2
@ -1,4 +1,4 @@
|
|||||||
{ config, pkgs, ... }:
|
{ config, pkgs, lib, ... }:
|
||||||
|
|
||||||
let
|
let
|
||||||
cfg = config.services.crashplan;
|
cfg = config.services.crashplan;
|
||||||
@ -6,7 +6,7 @@ let
|
|||||||
varDir = "/var/lib/crashplan";
|
varDir = "/var/lib/crashplan";
|
||||||
in
|
in
|
||||||
|
|
||||||
with pkgs.lib;
|
with lib;
|
||||||
|
|
||||||
{
|
{
|
||||||
options = {
|
options = {
|
||||||
@ -60,4 +60,4 @@ with pkgs.lib;
|
|||||||
};
|
};
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user