treewide: fix eval related to with lib;
removal
This commit is contained in:
parent
af18f59884
commit
f6306c0961
@ -13,7 +13,7 @@
|
||||
};
|
||||
defaultText = lib.literalExpression ''
|
||||
pkgs.glibcLocales.override {
|
||||
allLocales = any (x: x == "all") config.i18n.supportedLocales;
|
||||
allLocales = lib.any (x: x == "all") config.i18n.supportedLocales;
|
||||
locales = config.i18n.supportedLocales;
|
||||
}
|
||||
'';
|
||||
|
@ -35,7 +35,7 @@ in
|
||||
(lib.mkRenamedOptionModule [ "networking" "dnsExtensionMechanism" ] [ "networking" "resolvconf" "dnsExtensionMechanism" ])
|
||||
(lib.mkRenamedOptionModule [ "networking" "extraResolvconfConf" ] [ "networking" "resolvconf" "extraConfig" ])
|
||||
(lib.mkRenamedOptionModule [ "networking" "resolvconfOptions" ] [ "networking" "resolvconf" "extraOptions" ])
|
||||
(lib.mkRemovedOptionModule [ "networking" "resolvconf" "useHostResolvConf" ] "This option was never used for lib.anything lib.anyways")
|
||||
(lib.mkRemovedOptionModule [ "networking" "resolvconf" "useHostResolvConf" ] "This option was never used for anything anyways")
|
||||
];
|
||||
|
||||
options = {
|
||||
|
@ -205,13 +205,13 @@ in {
|
||||
preStart =
|
||||
let replacePlugins =
|
||||
lib.optionalString (cfg.plugins != null) (
|
||||
let pluginCmds = lib.attrsets.lib.mapAttrsToList
|
||||
let pluginCmds = lib.mapAttrsToList
|
||||
(n: v: "cp ${v} ${cfg.home}/plugins/${n}.jpi")
|
||||
cfg.plugins;
|
||||
in ''
|
||||
rm -r ${cfg.home}/plugins || true
|
||||
mkdir -p ${cfg.home}/plugins
|
||||
${lib.strings.lib.concatStringsSep "\n" pluginCmds}
|
||||
${lib.concatStringsSep "\n" pluginCmds}
|
||||
'');
|
||||
in ''
|
||||
rm -rf ${cfg.home}/war
|
||||
|
Loading…
Reference in New Issue
Block a user