2.home-manager/modules/services/rsibreak.nix
Austin Horstman cba2f9ce95 treewide: reformat nixfmt-rfc-style
Reformat repository using new nixfmt-rfc-style.
2025-04-08 08:50:05 -07:00

45 lines
799 B
Nix

{
config,
lib,
pkgs,
...
}:
with lib;
let
cfg = config.services.rsibreak;
in
{
options.services.rsibreak = {
enable = mkEnableOption "rsibreak";
};
config = mkIf cfg.enable {
assertions = [
(lib.hm.assertions.assertPlatform "services.rsibreak" pkgs lib.platforms.linux)
];
home.packages = [ pkgs.rsibreak ];
systemd.user.services.rsibreak = {
Unit = {
Description = "RSI break timer";
After = [ "graphical-session.target" ];
PartOf = [ "graphical-session.target" ];
};
Install = {
WantedBy = [ "graphical-session.target" ];
};
Service = {
Environment = [ "PATH=${config.home.profileDirectory}/bin" ];
ExecStart = "${pkgs.rsibreak}/bin/rsibreak";
};
};
};
}