Remove unnecessary parameter

This commit is contained in:
SebastianStork 2024-05-08 13:11:59 +02:00
parent 9bf5382d96
commit 53bd8668a2
4 changed files with 6 additions and 6 deletions

View file

@ -4,14 +4,14 @@
lib,
...
}: let
assembleWrapper = wrapperName: wrapperConfig:
assembleWrapper = wrapperConfig:
(inputs.wrapper-manager.lib {
inherit pkgs;
modules = [{wrappers.${wrapperName} = wrapperConfig;}];
modules = [{wrappers.wrappedPackage = wrapperConfig;}];
})
.config
.wrappers
.${wrapperName}
.wrappedPackage
.wrapped;
in {
_module.args.myWrappers = lib.pipe (builtins.readDir ./.) [