mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-18 19:51:17 +00:00
fc614c37c6
most modules can be evaluated for their documentation in a very restricted environment that doesn't include all of nixpkgs. this evaluation can then be cached and reused for subsequent builds, merging only documentation that has changed into the cached set. since nixos ships with a large number of modules of which only a few are used in any given config this can save evaluation a huge percentage of nixos options available in any given config. in tests of this caching, despite having to copy most of nixos/, saves about 80% of the time needed to build the system manual, or about two second on the machine used for testing. build time for a full system config shrank from 9.4s to 7.4s, while turning documentation off entirely shortened the build to 7.1s.
87 lines
2.3 KiB
Nix
87 lines
2.3 KiB
Nix
{ config, pkgs, lib, ... }:
|
|
|
|
with lib;
|
|
|
|
let
|
|
cfg = config.i18n.inputMethod.ibus;
|
|
ibusPackage = pkgs.ibus-with-plugins.override { plugins = cfg.engines; };
|
|
ibusEngine = types.package // {
|
|
name = "ibus-engine";
|
|
check = x: (lib.types.package.check x) && (attrByPath ["meta" "isIbusEngine"] false x);
|
|
};
|
|
|
|
impanel =
|
|
if cfg.panel != null
|
|
then "--panel=${cfg.panel}"
|
|
else "";
|
|
|
|
ibusAutostart = pkgs.writeTextFile {
|
|
name = "autostart-ibus-daemon";
|
|
destination = "/etc/xdg/autostart/ibus-daemon.desktop";
|
|
text = ''
|
|
[Desktop Entry]
|
|
Name=IBus
|
|
Type=Application
|
|
Exec=${ibusPackage}/bin/ibus-daemon --daemonize --xim ${impanel}
|
|
'';
|
|
};
|
|
in
|
|
{
|
|
imports = [
|
|
(mkRenamedOptionModule [ "programs" "ibus" "plugins" ] [ "i18n" "inputMethod" "ibus" "engines" ])
|
|
];
|
|
|
|
options = {
|
|
i18n.inputMethod.ibus = {
|
|
engines = mkOption {
|
|
type = with types; listOf ibusEngine;
|
|
default = [];
|
|
example = literalExpression "with pkgs.ibus-engines; [ mozc hangul ]";
|
|
description =
|
|
let
|
|
enginesDrv = filterAttrs (const isDerivation) pkgs.ibus-engines;
|
|
engines = concatStringsSep ", "
|
|
(map (name: "<literal>${name}</literal>") (attrNames enginesDrv));
|
|
in
|
|
"Enabled IBus engines. Available engines are: ${engines}.";
|
|
};
|
|
panel = mkOption {
|
|
type = with types; nullOr path;
|
|
default = null;
|
|
example = literalExpression ''"''${pkgs.plasma5Packages.plasma-desktop}/lib/libexec/kimpanel-ibus-panel"'';
|
|
description = "Replace the IBus panel with another panel.";
|
|
};
|
|
};
|
|
};
|
|
|
|
config = mkIf (config.i18n.inputMethod.enabled == "ibus") {
|
|
i18n.inputMethod.package = ibusPackage;
|
|
|
|
environment.systemPackages = [
|
|
ibusAutostart
|
|
];
|
|
|
|
# Without dconf enabled it is impossible to use IBus
|
|
programs.dconf.enable = true;
|
|
|
|
programs.dconf.packages = [ ibusPackage ];
|
|
|
|
services.dbus.packages = [
|
|
ibusAutostart
|
|
];
|
|
|
|
environment.variables = {
|
|
GTK_IM_MODULE = "ibus";
|
|
QT_IM_MODULE = "ibus";
|
|
XMODIFIERS = "@im=ibus";
|
|
};
|
|
|
|
xdg.portal.extraPortals = mkIf config.xdg.portal.enable [
|
|
ibusPackage
|
|
];
|
|
};
|
|
|
|
# uses attributes of the linked package
|
|
meta.buildDocsInSandbox = false;
|
|
}
|