1
0
Fork 0
mirror of https://github.com/nix-community/home-manager.git synced 2025-11-08 19:46:05 +01:00

kime: fix systemd service (#6911)

This commit is contained in:
nakoo 2025-04-30 19:18:20 +00:00 committed by GitHub
parent d2b3e6c83d
commit c9c2c1a14e
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -63,7 +63,11 @@ in
Description = "Kime input method editor"; Description = "Kime input method editor";
PartOf = [ "graphical-session.target" ]; PartOf = [ "graphical-session.target" ];
}; };
Service.ExecStart = "${pkgs.kime}/bin/kime"; Service = {
Type = "oneshot";
RemainAfterExit = true;
ExecStart = "${pkgs.kime}/bin/kime";
};
Install.WantedBy = [ "graphical-session.target" ]; Install.WantedBy = [ "graphical-session.target" ];
}; };
}; };