mirror of
https://github.com/nix-community/home-manager
synced 2024-11-01 08:49:44 +01:00
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
|
||
|
'';
|
||
|
}
|