Fix lib functions taken from pkgs.lib instead of lib in nixos
This commit is contained in:
parent
b0c8769c84
commit
7fec575976
@ -31,7 +31,7 @@ in
|
|||||||
{
|
{
|
||||||
|
|
||||||
options = {
|
options = {
|
||||||
extraWorkersProperties = pkgs.lib.mkOption {
|
extraWorkersProperties = lib.mkOption {
|
||||||
default = "";
|
default = "";
|
||||||
description = "Additional configuration for the workers.properties file.";
|
description = "Additional configuration for the workers.properties file.";
|
||||||
};
|
};
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
{ config, pkgs, ... }:
|
{ config, pkgs, lib, ... }:
|
||||||
|
|
||||||
with pkgs.lib;
|
with lib;
|
||||||
|
|
||||||
let
|
let
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user