mirror of
https://github.com/nix-community/home-manager
synced 2024-11-01 08:49:44 +01:00
a69f3e9b03
* kime: Fix kime systemd service * kime: Add test case * kime: Add test stub package
14 lines
291 B
Nix
14 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
|
|
'';
|
|
}
|