mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-06-14 13:39:15 +03:00
nixos/fcitx5: fix evaluation
This commit is contained in:
parent
b20308c508
commit
2af24d4417
1 changed files with 3 additions and 3 deletions
|
@ -107,14 +107,14 @@ in
|
||||||
};
|
};
|
||||||
in
|
in
|
||||||
lib.attrsets.mergeAttrsList [
|
lib.attrsets.mergeAttrsList [
|
||||||
(optionalFile "config" (lib.generators.toINI { }) sts.globalOptions)
|
(optionalFile "config" (lib.generators.toINI { }) cfg.settings.globalOptions)
|
||||||
(optionalFile "profile" (lib.generators.toINI { }) sts.inputMethod)
|
(optionalFile "profile" (lib.generators.toINI { }) cfg.settings.inputMethod)
|
||||||
(lib.concatMapAttrs
|
(lib.concatMapAttrs
|
||||||
(name: value: optionalFile
|
(name: value: optionalFile
|
||||||
"conf/${name}.conf"
|
"conf/${name}.conf"
|
||||||
(lib.generators.toINIWithGlobalSection { })
|
(lib.generators.toINIWithGlobalSection { })
|
||||||
value)
|
value)
|
||||||
sts.addons)
|
cfg.settings.addons)
|
||||||
];
|
];
|
||||||
|
|
||||||
environment.variables = {
|
environment.variables = {
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue