diff --git a/flake/wrappers.nix b/flake/wrappers.nix index d47cda2..6e07468 100644 --- a/flake/wrappers.nix +++ b/flake/wrappers.nix @@ -8,12 +8,8 @@ ... }: { - _module.args.wrappers = - (lib.concatMapAttrs ( - name: _: { - ${lib.removeSuffix ".nix" name} = import "${self}/wrappers/${name}" { inherit inputs pkgs lib; }; - } - )) - (builtins.readDir "${self}/wrappers"); + _module.args.wrappers = lib.concatMapAttrs (name: _: { + ${lib.removeSuffix ".nix" name} = import "${self}/wrappers/${name}" { inherit inputs pkgs lib; }; + }) (builtins.readDir "${self}/wrappers"); }; }