- remove emacs - remove inputs - trying to speed up evaluation - update inputs
21 lines
355 B
Nix
21 lines
355 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;
|
|
};
|
|
};
|
|
}
|