19 lines
345 B
Nix
19 lines
345 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; [
|
||
|
|
pomodoro-timer
|
||
|
|
];
|
||
|
|
};
|
||
|
|
}
|