Modular, context-aware and aspect-oriented dendritic Nix configurations. Discussions: https://oeiuwq.zulipchat.com/join/nqp26cd4kngon6mo3ncgnuap/ den.oeiuwq.com
configurations den dendritic nix aspect oriented

remove booleans from parametric function arg

+1 -9
+1 -9
nix/lib.nix
··· 86 86 }; 87 87 }; 88 88 parametric.__functor = 89 - _: arg: 90 - if arg == true then 91 - parametric.atLeast 92 - else if arg == false then 93 - parametric.exactly 94 - else if builtins.isAttrs arg then 95 - parametric.withOwn parametric.atLeast arg 96 - else 97 - funk arg; 89 + _: parametric.withOwn parametric.atLeast; 98 90 99 91 aspects = inputs.flake-aspects.lib lib; 100 92