nix-config/overlays/default.nix
Bruno BELANYI 34c4f044a2 treewide: remove redundant 'builtins'
I keep forgetting `map` and `removeAttrs` are included at the top-level
in the prelude.
2026-01-26 17:53:16 +00:00

6 lines
204 B
Nix

# Automatically import all overlays in the directory
let
files = builtins.readDir ./.;
overlays = removeAttrs files [ "default.nix" ];
in
builtins.mapAttrs (name: _: import "${./.}/${name}") overlays