nixos-config/flake/wrappers.nix

15 lines
331 B
Nix

{
flake.wrappers.default =
{
self,
inputs,
pkgs,
lib,
...
}:
{
_module.args.wrappers = lib.concatMapAttrs (name: _: {
${lib.removeSuffix ".nix" name} = import "${self}/wrappers/${name}" { inherit inputs pkgs lib; };
}) (builtins.readDir "${self}/wrappers");
};
}