tangled
alpha
login
or
join now
oeiuwq.com
/
den
8
fork
atom
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
8
fork
atom
overview
issues
4
pulls
2
pipelines
remove booleans from parametric function arg
oeiuwq.com
3 months ago
dab9a236
5413c70d
+1
-9
1 changed file
expand all
collapse all
unified
split
nix
lib.nix
+1
-9
nix/lib.nix
···
86
86
};
87
87
};
88
88
parametric.__functor =
89
89
-
_: arg:
90
90
-
if arg == true then
91
91
-
parametric.atLeast
92
92
-
else if arg == false then
93
93
-
parametric.exactly
94
94
-
else if builtins.isAttrs arg then
95
95
-
parametric.withOwn parametric.atLeast arg
96
96
-
else
97
97
-
funk arg;
89
89
+
_: parametric.withOwn parametric.atLeast;
98
90
99
91
aspects = inputs.flake-aspects.lib lib;
100
92