2026-05-02 09:08:40 +02:00
|
|
|
# Productivity tools — Pomodoro timer and focus utilities.
|
|
|
|
|
{
|
|
|
|
|
config,
|
|
|
|
|
lib,
|
|
|
|
|
pkgs,
|
|
|
|
|
...
|
|
|
|
|
}:
|
|
|
|
|
with lib; let
|
|
|
|
|
cfg = config.desktop.apps.productivity;
|
|
|
|
|
in {
|
|
|
|
|
options.desktop.apps.productivity.enable = mkEnableOption "enable productivity tools";
|
|
|
|
|
|
|
|
|
|
config = mkIf cfg.enable {
|
|
|
|
|
home.packages = with pkgs; [
|
2026-06-15 07:13:04 +02:00
|
|
|
openwork
|
2026-05-02 09:08:40 +02:00
|
|
|
pomodoro-timer
|
|
|
|
|
];
|
|
|
|
|
};
|
|
|
|
|
}
|