a91161aa57
Both Qt and GTK load plugins from the active profiles automatically, so it is sufficient to install input methods system-wide. Overriding the plugin paths may interfere with correct operation of other plugins.
17 lines
372 B
Nix
17 lines
372 B
Nix
{ config, pkgs, lib, ... }:
|
|
|
|
with lib;
|
|
{
|
|
config = mkIf (config.i18n.inputMethod.enabled == "nabi") {
|
|
environment.systemPackages = [ pkgs.nabi ];
|
|
|
|
environment.variables = {
|
|
GTK_IM_MODULE = "nabi";
|
|
QT_IM_MODULE = "nabi";
|
|
XMODIFIERS = "@im=nabi";
|
|
};
|
|
|
|
services.xserver.displayManager.sessionCommands = "${pkgs.nabi}/bin/nabi &";
|
|
};
|
|
}
|