modularize direnv

This commit is contained in:
John Bowdre 2023-07-28 21:02:51 -05:00
parent ef39c88231
commit 9b7f815a4a
2 changed files with 7 additions and 0 deletions

View file

@ -2,6 +2,7 @@
# Common CLI apps # Common CLI apps
imports = [ imports = [
./direnv.nix
./fish.nix ./fish.nix
./tmux.nix ./tmux.nix
./vim.nix ./vim.nix

View file

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