From 89f28e63b4d4aeb285250480c62459152d87d690 Mon Sep 17 00:00:00 2001 From: Colin Date: Mon, 8 May 2023 09:50:10 +0000 Subject: [PATCH] fs: leave a note about trying lazyAttrs --- modules/fs/default.nix | 2 ++ 1 file changed, 2 insertions(+) diff --git a/modules/fs/default.nix b/modules/fs/default.nix index 9531fbab..978283e1 100644 --- a/modules/fs/default.nix +++ b/modules/fs/default.nix @@ -341,6 +341,8 @@ in { options = { sane.fs = mkOption { # type = types.attrsOf fsEntry; + # TODO: can we use `types.lazyAttrsOf fsEntry`?? + # - this exists specifically to let attrs reference eachother type = fsTree; default = {}; };