This commit is contained in:
Sean Kovacs 2025-12-12 13:23:24 -05:00
commit 0680b63126
Signed by: sckova
GPG key ID: 00F325187C68651A
15 changed files with 360 additions and 142 deletions

View file

@ -80,24 +80,24 @@
# };
# };
systemd.user.services.input-leap = {
Unit = {
Description = "Autostart Input Leap";
After = [ "graphical-session.target" ];
};
# 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
''}";
};
# 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" ];
};
};
# Install = {
# WantedBy = [ "graphical-session.target" ];
# };
# };
}