a69f3e9b03
* kime: Fix kime systemd service * kime: Add test case * kime: Add test stub package
15 lines
291 B
Nix
15 lines
291 B
Nix
{ config, pkgs, ... }:
|
|
|
|
{
|
|
i18n.inputMethod = {
|
|
enabled = "kime";
|
|
kime.config = { engine = { hangul = { layout = "dubeolsik"; }; }; };
|
|
};
|
|
|
|
test.stubs.kime = { outPath = null; };
|
|
|
|
nmt.script = ''
|
|
assertFileExists home-files/.config/systemd/user/kime-daemon.service
|
|
'';
|
|
}
|