This commit is contained in:
SebastianStork 2024-07-04 20:20:46 +02:00
parent 004ae2a919
commit ebc98f411e
2 changed files with 25 additions and 25 deletions

View file

@ -14,7 +14,7 @@ let
in
{
_module.args.wrappers = lib.pipe (builtins.readDir ./.) [
(lib.filterAttrs (name: value: name != "default.nix"))
(lib.filterAttrs (name: _: name != "default.nix"))
(lib.concatMapAttrs (
name: _: {
${lib.removeSuffix ".nix" name} = import ./${name} { inherit assembleWrapper moduleArgs; };