mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-01 15:11:25 +00:00
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 = {
|
||||
extraWorkersProperties = pkgs.lib.mkOption {
|
||||
extraWorkersProperties = lib.mkOption {
|
||||
default = "";
|
||||
description = "Additional configuration for the workers.properties file.";
|
||||
};
|
||||
|
@ -1,6 +1,6 @@
|
||||
{ config, pkgs, ... }:
|
||||
{ config, pkgs, lib, ... }:
|
||||
|
||||
with pkgs.lib;
|
||||
with lib;
|
||||
|
||||
let
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user