1
0
mirror of https://github.com/nix-community/home-manager synced 2024-06-28 17:38:33 +02:00
home-manager/modules/programs/comodoro.nix

32 lines
806 B
Nix
Raw Normal View History

2023-04-14 23:41:51 +02:00
{ config, lib, pkgs, ... }:
let
cfg = config.programs.comodoro;
tomlFormat = pkgs.formats.toml { };
in {
meta.maintainers = with lib.hm.maintainers; [ soywod ];
options.programs.comodoro = {
enable = lib.mkEnableOption "Comodoro, a CLI to manage your time";
2023-04-14 23:41:51 +02:00
package = lib.mkPackageOption pkgs "comodoro" { };
2023-04-14 23:41:51 +02:00
settings = lib.mkOption {
type = lib.types.submodule { freeformType = tomlFormat.type; };
default = { };
description = ''
2023-04-14 23:41:51 +02:00
Comodoro configuration.
See <https://pimalaya.org/comodoro/cli/configuration/> for supported values.
2023-04-14 23:41:51 +02:00
'';
};
};
config = lib.mkIf cfg.enable {
home.packages = [ cfg.package ];
xdg.configFile."comodoro/config.toml".source =
tomlFormat.generate "comodoro-config.toml" cfg.settings;
};
}