zsh: use attribute set to define files
To avoid warning message concerning deprecation of the `loaOf` type.
This commit is contained in:
parent
07dc3e5425
commit
cff9ee7cce
|
@ -437,10 +437,10 @@ in
|
||||||
# but allow the user to opt out.
|
# but allow the user to opt out.
|
||||||
programs.zsh.enableCompletion = mkDefault true;
|
programs.zsh.enableCompletion = mkDefault true;
|
||||||
|
|
||||||
home.file = map (plugin: {
|
home.file =
|
||||||
target = "${pluginsDir}/${plugin.name}";
|
foldl' (a: b: a // b) {}
|
||||||
source = plugin.src;
|
(map (plugin: { "${pluginsDir}/${plugin.name}".source = plugin.src; })
|
||||||
}) cfg.plugins;
|
cfg.plugins);
|
||||||
})
|
})
|
||||||
]);
|
]);
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue