aboutsummaryrefslogtreecommitdiffstats
path: root/lib/types/default.nix
diff options
context:
space:
mode:
Diffstat (limited to 'lib/types/default.nix')
-rw-r--r--lib/types/default.nix8
1 files changed, 8 insertions, 0 deletions
diff --git a/lib/types/default.nix b/lib/types/default.nix
new file mode 100644
index 0000000..c4bf517
--- /dev/null
+++ b/lib/types/default.nix
@@ -0,0 +1,8 @@
+{ lib }@args: let {
+
+ body = lib.foldl' (res: path: res // import path args) {} [
+ ./populate.nix
+ ./posix.nix
+ ];
+
+}