From 4eb7880e558e6e7256bbeeb432080c786a3a1b53 Mon Sep 17 00:00:00 2001 From: Ching Pei Yang <59727193+horriblename@users.noreply.github.com> Date: Sat, 10 Aug 2024 21:29:22 +0200 Subject: [PATCH] wrapper: fix wrong import source --- modules/wrapper/rc/config.nix | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/modules/wrapper/rc/config.nix b/modules/wrapper/rc/config.nix index 7457d459..b5fa68f5 100644 --- a/modules/wrapper/rc/config.nix +++ b/modules/wrapper/rc/config.nix @@ -4,8 +4,7 @@ ... }: let inherit (builtins) map mapAttrs filter; - inherit (lib.options) mkOption; - inherit (lib.attrsets) mapAttrsToList filterAttrs getAttrs attrValues attrNames; + inherit (lib.attrsets) mapAttrsToList filterAttrs attrsToList; inherit (lib.strings) concatLines concatMapStringsSep; inherit (lib.trivial) showWarnings; inherit (lib.generators) mkLuaInline;