nixos-config/users/rouven/modules/wayland/breaktimer.nix
2023-12-29 19:47:57 +01:00

17 lines
379 B
Nix

{ pkgs, ... }:
{
systemd.user = {
services.ianny = {
Unit = {
Description = "Ianny break timer";
After = [ "graphical-session-pre.target" ];
PartOf = [ "graphical-session.target" ];
};
Service = {
ExecStart = "${pkgs.ianny}/bin/ianny";
};
Install = { WantedBy = [ "graphical-session.target" ]; };
};
};
}