aboutsummaryrefslogtreecommitdiff
path: root/modules/nickel
diff options
context:
space:
mode:
Diffstat (limited to 'modules/nickel')
-rw-r--r--modules/nickel/default.nix8
1 files changed, 4 insertions, 4 deletions
diff --git a/modules/nickel/default.nix b/modules/nickel/default.nix
index 7663e93..d9c208a 100644
--- a/modules/nickel/default.nix
+++ b/modules/nickel/default.nix
@@ -159,19 +159,19 @@ in {
info.nickel = cfg.enable;
nickel = {
- file = mkMerge [
+ file =
(mapAttrs (_: v: {
text = concatMapStringsSep "\n" createGenerator v;
}) cfg.menu.generator)
-
+ //
(mapAttrs (_: v: {
text = concatStringsSep "\n" (mapAttrsToList createExperimental v);
}) cfg.menu.experimental)
-
+ //
(mapAttrs (_: v: {
text = concatMapStringsSep "\n" createMenuItem v;
}) cfg.menu.item)
- ];
+ ;
};
}
(mkIf cfg.enable {