nixos-config/users/rouven/modules/wayland/breaktimer.nix

15 lines
346 B
Nix
Raw Normal View History

2023-12-29 19:47:57 +01:00
{ pkgs, ... }:
{
2024-01-04 00:11:01 +01:00
systemd.user.services.ianny = {
Unit = {
Description = "Ianny break timer";
After = [ "graphical-session-pre.target" ];
PartOf = [ "graphical-session.target" ];
};
2024-01-04 00:11:01 +01:00
Service = {
ExecStart = "${pkgs.ianny}/bin/ianny";
};
Install = { WantedBy = [ "graphical-session.target" ]; };
};
}