mirror of
https://github.com/daylinmorgan/oizys.git
synced 2024-11-05 01:53:15 -06:00
pipes pipes
This commit is contained in:
parent
a738b58baf
commit
c56c791088
1 changed files with 15 additions and 13 deletions
|
@ -47,21 +47,22 @@ let
|
|||
# ["a" "b"] -> {a.enable = true; b.enable = true;}
|
||||
enableAttrs =
|
||||
attrs:
|
||||
listToAttrs (
|
||||
map (attr: {
|
||||
attrs
|
||||
|> map (attr: {
|
||||
name = attr;
|
||||
value = enabled;
|
||||
}) attrs
|
||||
);
|
||||
})
|
||||
|> listToAttrs;
|
||||
|
||||
# ["a" "b"] -> {a.enable = false; b.enable = false;}
|
||||
disableAttrs =
|
||||
attrs:
|
||||
listToAttrs (
|
||||
map (attr: {
|
||||
attrs
|
||||
|> map (attr: {
|
||||
name = attr;
|
||||
value = disabled;
|
||||
}) attrs
|
||||
);
|
||||
})
|
||||
|> listToAttrs;
|
||||
|
||||
mkIfIn = name: list: prev.mkIf (builtins.elem name list);
|
||||
|
||||
|
@ -110,7 +111,8 @@ let
|
|||
};
|
||||
|
||||
loadOverlays =
|
||||
inputs: dir: readDir dir
|
||||
inputs: dir:
|
||||
readDir dir
|
||||
|> attrNames
|
||||
|> filter (f: f != "default.nix")
|
||||
|> map (f: import (../overlays + "/${f}") { inherit inputs; });
|
||||
|
|
Loading…
Reference in a new issue