20 lines
295 B
Nix
20 lines
295 B
Nix
{ lib, config, ... }:
|
|
|
|
let
|
|
cfg = config.snowhawk.tldr;
|
|
in
|
|
{
|
|
options.snowhawk.tldr = {
|
|
enable = lib.mkEnableOption "tldr";
|
|
|
|
};
|
|
|
|
config = lib.mkIf cfg.enable {
|
|
programs.tealdeer = {
|
|
enable = true;
|
|
settings = {
|
|
updates.auto_update = true;
|
|
};
|
|
};
|
|
};
|
|
}
|