nix-config/overlays/default.nix
Bruno BELANYI 49f938f432 treewide: remove redundant 'builtins'
I keep forgetting `map` and `removeAttrs` are included at the top-level
in the prelude.
2026-02-05 12:30:24 +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