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
|
||||
lib.attrsets.mergeAttrsList [
|
||||
(optionalFile "config" (lib.generators.toINI { }) sts.globalOptions)
|
||||
(optionalFile "profile" (lib.generators.toINI { }) sts.inputMethod)
|
||||
(optionalFile "config" (lib.generators.toINI { }) cfg.settings.globalOptions)
|
||||
(optionalFile "profile" (lib.generators.toINI { }) cfg.settings.inputMethod)
|
||||
(lib.concatMapAttrs
|
||||
(name: value: optionalFile
|
||||
"conf/${name}.conf"
|
||||
(lib.generators.toINIWithGlobalSection { })
|
||||
value)
|
||||
sts.addons)
|
||||
cfg.settings.addons)
|
||||
];
|
||||
|
||||
environment.variables = {
|
||||
|
|
Loading…
Reference in a new issue