tldr: module init
parent
9e982505a6
commit
3df5994159
|
@ -0,0 +1,20 @@
|
|||
{ 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;
|
||||
};
|
||||
};
|
||||
};
|
||||
}
|
|
@ -24,6 +24,7 @@ in
|
|||
redshift.enable = true;
|
||||
xivlauncher.enable = true;
|
||||
flameshot.enable = true;
|
||||
tldr.enable = true;
|
||||
};
|
||||
snowhawk.ssh = {
|
||||
enable = true;
|
||||
|
|
Loading…
Reference in New Issue