autostart input-leap

This commit is contained in:
Sean Kovacs 2025-11-12 11:09:56 -05:00
commit 24b273b4b0
Signed by: sckova
GPG key ID: 00F325187C68651A

View file

@ -53,6 +53,27 @@
};
};
systemd.user.services.input-leap = {
Unit = {
Description = "Autostart Input Leap";
After = [ "graphical-session.target" ];
};
Service = {
Type = "oneshot";
RemainAfterExit = true;
PassEnvironment = "DISPLAY";
ExecStart = "${pkgs.writeShellScript "input-leap-start" ''
sleep 5
${pkgs.input-leap}/bin/input-leap
''}";
};
Install = {
WantedBy = [ "graphical-session.target" ];
};
};
programs.konsole.enable = false;
programs.kitty = {