depot/third_party/home-manager/modules/services/rsibreak.nix
Default email a0869759be Project import generated by Copybara.
GitOrigin-RevId: ac319fd3149b23a3ad8ee24cb2def6e67acf194c
2021-07-03 00:36:30 +02:00

33 lines
664 B
Nix

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