23 lines
479 B
Nix
23 lines
479 B
Nix
{
|
|
inputs,
|
|
lib,
|
|
pkgs,
|
|
...
|
|
}: {
|
|
home.packages = [inputs.wayland-appusage.packages.${pkgs.system}.appusage];
|
|
|
|
systemd.user.services.appusage = {
|
|
Unit = {
|
|
Description = "Appusage daemon";
|
|
};
|
|
|
|
Install.WantedBy = ["sway-session.target"];
|
|
|
|
Service = {
|
|
Type = "simple";
|
|
Restart = "on-failure";
|
|
ExecStart = "${inputs.wayland-appusage.packages.${pkgs.system}.appusage-daemon}/bin/appusage-daemon";
|
|
RestartSec = "5s";
|
|
};
|
|
};
|
|
}
|