Files
m3ta-home/profiles/contexts/desktop/apps/productivity.nix
T
2026-06-15 07:13:04 +02:00

20 lines
360 B
Nix

# 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; [
openwork
pomodoro-timer
];
};
}