mirror of
https://git.sr.ht/~magic_rb/dotfiles
synced 2024-11-22 08:04:20 +01:00
6b3fc977dc
Signed-off-by: magic_rb <magic_rb@redalder.org>
20 lines
316 B
Nix
20 lines
316 B
Nix
{
|
|
inputs,
|
|
lib,
|
|
...
|
|
}: let
|
|
inherit
|
|
(lib)
|
|
mapAttrs'
|
|
nameValuePair
|
|
;
|
|
mapAttrNames = f: attrs: mapAttrs' (n: v: nameValuePair (f n) v) attrs;
|
|
in {
|
|
flake.overlays = mapAttrNames (n: "bumps-" + n) (inputs.haumea.lib.load {
|
|
src = ./bumps;
|
|
inputs = {
|
|
inherit inputs;
|
|
};
|
|
});
|
|
}
|