Fix formatting

This commit is contained in:
SebastianStork 2024-07-16 12:37:28 +02:00
parent b0561486cc
commit f418e191d4

View file

@ -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");
};
}