diff options
author | sefidel <contact@sefidel.net> | 2024-05-11 22:05:19 +0900 |
---|---|---|
committer | sefidel <contact@sefidel.net> | 2024-05-11 22:05:19 +0900 |
commit | e7fdb40141db8b0cdacf9b888bd96389f6001250 (patch) | |
tree | aa4b2e09e11924da2a3502b27d77afa6d6a3ba09 /home/profiles | |
parent | 587bbee8a08206f7b1457ea31c0b7b179b060158 (diff) | |
download | nixrc-e7fdb40141db8b0cdacf9b888bd96389f6001250.tar.gz nixrc-e7fdb40141db8b0cdacf9b888bd96389f6001250.zip |
fix(home/gui): restart fcitx5 on failure
Diffstat (limited to 'home/profiles')
-rw-r--r-- | home/profiles/gui/default.nix | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/home/profiles/gui/default.nix b/home/profiles/gui/default.nix index b7a23a1..2238585 100644 --- a/home/profiles/gui/default.nix +++ b/home/profiles/gui/default.nix @@ -147,6 +147,10 @@ in fcitx5-mozc fcitx5-hangul ]; + systemd.user.services.fcitx5-daemon.Service = { + # HACK: fcitx5 crashes with "Wayland connection got error: 109" + Restart = "on-failure"; + }; programs = { foot = { |