This commit is contained in:
2023-02-27 21:29:14 +00:00
parent 3482a29ed4
commit ce1eb1d0e0
23 changed files with 452 additions and 332 deletions

11
lib/default.nix Normal file
View File

@@ -0,0 +1,11 @@
{
self,
platforms,
lib,
} @ args:
with {inherit (lib) makeExtensible attrValues foldr;};
(makeExtensible (final:
with final;
(import ./map.nix args).modules ./. (file: import file args)))
.extend
(final: prev: foldr (x: y: x // y) {} (attrValues prev))