fix spotify
This commit is contained in:
parent
769d4b0df5
commit
85521a1666
14 changed files with 223 additions and 262 deletions
30
modules/home/apps/tools/tealdeer/default.nix
Normal file
30
modules/home/apps/tools/tealdeer/default.nix
Normal file
|
|
@ -0,0 +1,30 @@
|
|||
{
|
||||
options,
|
||||
config,
|
||||
lib,
|
||||
pkgs,
|
||||
...
|
||||
}:
|
||||
with lib;
|
||||
with lib.custom; let
|
||||
cfg = config.apps.tools.tealdeer;
|
||||
in {
|
||||
options.apps.tools.tealdeer = with types; {
|
||||
enable = mkBoolOpt false "Enable Tealdeer";
|
||||
};
|
||||
|
||||
config = mkIf cfg.enable {
|
||||
programs.tealdeer = {
|
||||
enable = true;
|
||||
settings = {
|
||||
display = {
|
||||
compact = false;
|
||||
use_pager = true;
|
||||
};
|
||||
updates = {
|
||||
auto_update = true;
|
||||
};
|
||||
};
|
||||
};
|
||||
};
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue