Add direnv and tldr packages

This commit is contained in:
panotaka
2023-11-26 21:29:01 -04:00
parent 2d1163525a
commit 147c2743ef
3 changed files with 21 additions and 0 deletions

View File

@@ -10,6 +10,8 @@
./atuin.nix ./atuin.nix
./autojump.nix ./autojump.nix
./bat.nix ./bat.nix
./direnv.nix
./tldr.nix
]; ];
} }

8
home/shell/direnv.nix Normal file
View File

@@ -0,0 +1,8 @@
{
programs.direnv = {
enable = true;
nix-direnv = {
enable = true;
};
};
}

11
home/shell/tldr.nix Normal file
View File

@@ -0,0 +1,11 @@
{
programs.tealdeer = {
enable = true;
settings = {
display = {
compact = false;
use_pager = true;
};
};
};
}