mirror of
https://github.com/donovanglover/nix-config.git
synced 2024-12-16 03:40:57 +01:00
17 lines
376 B
Nix
17 lines
376 B
Nix
|
{
|
||
|
home-manager.sharedModules = [{
|
||
|
xdg.configFile."mozc/ibus_config.textproto".force = true;
|
||
|
xdg.configFile."mozc/ibus_config.textproto".text = ''
|
||
|
engines {
|
||
|
name : "mozc-jp"
|
||
|
longname : "Mozc"
|
||
|
layout : "default"
|
||
|
layout_variant : ""
|
||
|
layout_option : ""
|
||
|
rank : 80
|
||
|
}
|
||
|
active_on_launch: True
|
||
|
'';
|
||
|
}];
|
||
|
}
|