mirror of
https://github.com/nix-community/home-manager
synced 2024-11-01 08:49:44 +01:00
54 lines
1.3 KiB
Nix
54 lines
1.3 KiB
Nix
|
{ config, lib, pkgs, ... }:
|
||
|
|
||
|
with lib;
|
||
|
let
|
||
|
cfg = config.programs.tealdeer;
|
||
|
|
||
|
tomlFormat = pkgs.formats.toml { };
|
||
|
|
||
|
configDir = if pkgs.stdenv.isDarwin then
|
||
|
"Library/Application Support"
|
||
|
else
|
||
|
config.xdg.configHome;
|
||
|
|
||
|
in {
|
||
|
meta.maintainers = [ maintainers.marsam ];
|
||
|
|
||
|
options.programs.tealdeer = {
|
||
|
enable = mkEnableOption "Tealdeer";
|
||
|
|
||
|
settings = mkOption {
|
||
|
type = tomlFormat.type;
|
||
|
default = { };
|
||
|
defaultText = literalExpression "{ }";
|
||
|
example = literalExpression ''
|
||
|
{
|
||
|
display = {
|
||
|
compact = false;
|
||
|
use_pager = true;
|
||
|
};
|
||
|
updates = {
|
||
|
auto_update = false;
|
||
|
};
|
||
|
};
|
||
|
'';
|
||
|
description = ''
|
||
|
Configuration written to
|
||
|
<filename>$XDG_CONFIG_HOME/tealdeer/config.toml</filename> on Linux or
|
||
|
<filename>$HOME/Library/Application Support/tealdeer/config.toml</filename>
|
||
|
on Darwin. See
|
||
|
<link xlink:href="https://dbrgn.github.io/tealdeer/config.html"/>
|
||
|
for more information.
|
||
|
'';
|
||
|
};
|
||
|
};
|
||
|
|
||
|
config = mkIf cfg.enable {
|
||
|
home.packages = [ pkgs.tealdeer ];
|
||
|
|
||
|
home.file."${configDir}/tealdeer/config.toml" = mkIf (cfg.settings != { }) {
|
||
|
source = tomlFormat.generate "tealdeer-config" cfg.settings;
|
||
|
};
|
||
|
};
|
||
|
}
|