nixfleet/hmModules/tremotesf/default.nix
Andrea Ciceri a394b9cefd
All checks were successful
/ test (push) Successful in 32s
Reformat everything
2024-09-20 11:37:17 +02:00

22 lines
359 B
Nix

{
pkgs,
lib,
...
}:
{
home.packages = [ pkgs.tremotesf ];
systemd.user.services.tremotesf = {
Install.WantedBy = [ "graphical-session.target" ];
Unit = {
Description = "tremotesf";
};
Service = {
ExecStart = "${lib.getExe pkgs.tremotesf} --minimized";
Restart = "on-failure";
RestartSec = 3;
};
};
}