mirror of
https://git.sr.ht/~magic_rb/dotfiles
synced 2024-11-22 08:04:20 +01:00
Fixup bumps
Signed-off-by: magic_rb <magic_rb@redalder.org>
This commit is contained in:
parent
326effe98c
commit
6b3fc977dc
|
@ -1,5 +1,19 @@
|
|||
{inputs, ...}: {
|
||||
overlays = inputs.haumea.lib.load {
|
||||
{
|
||||
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;
|
||||
};
|
||||
});
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue