mirror of
https://github.com/nix-community/home-manager.git
synced 2025-11-08 19:46:05 +01:00
Some files don't need nesting and can be root level again to reduce conflicts with other PRs. Signed-off-by: Austin Horstman <khaneliman12@gmail.com>
109 lines
2.9 KiB
Nix
109 lines
2.9 KiB
Nix
{
|
|
config,
|
|
lib,
|
|
pkgs,
|
|
...
|
|
}:
|
|
let
|
|
inherit (lib) mkIf mkOption types;
|
|
|
|
cfg = config.programs.tealdeer;
|
|
|
|
configDir = if pkgs.stdenv.isDarwin then "Library/Application Support" else config.xdg.configHome;
|
|
|
|
tomlFormat = pkgs.formats.toml { };
|
|
|
|
settingsFormat =
|
|
let
|
|
updatesSection = types.submodule {
|
|
options = {
|
|
auto_update = lib.mkEnableOption "auto-update";
|
|
|
|
auto_update_interval_hours = mkOption {
|
|
type = types.ints.positive;
|
|
default = 720;
|
|
example = lib.literalExpression "24";
|
|
description = ''
|
|
Duration, since the last cache update, after which the cache will be refreshed.
|
|
This parameter is ignored if {var}`auto_update` is set to `false`.
|
|
'';
|
|
};
|
|
};
|
|
};
|
|
in
|
|
types.submodule {
|
|
freeformType = tomlFormat.type;
|
|
options = {
|
|
updates = mkOption {
|
|
type = updatesSection;
|
|
default = { };
|
|
description = ''
|
|
Tealdeer can refresh the cache automatically when it is outdated.
|
|
This behavior can be configured in the updates section.
|
|
'';
|
|
};
|
|
};
|
|
};
|
|
|
|
in
|
|
{
|
|
meta.maintainers = [ lib.hm.maintainers.pedorich-n ];
|
|
|
|
imports = [
|
|
(lib.mkRemovedOptionModule [ "programs" "tealdeer" "updateOnActivation" ] ''
|
|
Updating tealdeer's cache requires network access.
|
|
The activation script should be fast and idempotent, so the option was removed.
|
|
Please use
|
|
|
|
`programs.tealdeer.settings.updates.auto_update = true`
|
|
|
|
instead, to make sure tealdeer's cache is updated periodically.
|
|
'')
|
|
];
|
|
|
|
options.programs.tealdeer = {
|
|
enable = lib.mkEnableOption "Tealdeer";
|
|
|
|
package = lib.mkPackageOption pkgs "tealdeer" { };
|
|
|
|
settings = mkOption {
|
|
type = types.nullOr settingsFormat;
|
|
default = null;
|
|
example = lib.literalExpression ''
|
|
{
|
|
display = {
|
|
compact = false;
|
|
use_pager = true;
|
|
};
|
|
updates = {
|
|
auto_update = false;
|
|
};
|
|
};
|
|
'';
|
|
description = ''
|
|
Configuration written to
|
|
{file}`$XDG_CONFIG_HOME/tealdeer/config.toml` on Linux or
|
|
{file}`$HOME/Library/Application Support/tealdeer/config.toml` on Darwin.
|
|
See <https://tealdeer-rs.github.io/tealdeer/config.html> for more information.
|
|
'';
|
|
};
|
|
|
|
enableAutoUpdates = lib.mkEnableOption "Auto updates" // {
|
|
default = true;
|
|
example = false;
|
|
};
|
|
};
|
|
|
|
config = mkIf cfg.enable {
|
|
home.packages = [ cfg.package ];
|
|
|
|
home.file."${configDir}/tealdeer/config.toml" = mkIf (cfg.settings != null && cfg.settings != { }) {
|
|
source = tomlFormat.generate "tealdeer-config" cfg.settings;
|
|
};
|
|
|
|
services.tldr-update = mkIf cfg.enableAutoUpdates {
|
|
enable = true;
|
|
package = cfg.package;
|
|
};
|
|
};
|
|
}
|