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:
parent
d2b3e6c83d
commit
c9c2c1a14e
1 changed files with 5 additions and 1 deletions
|
|
@ -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" ];
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue