Add direnv

This commit is contained in:
Tim Schubert 2020-10-17 12:48:20 +02:00
parent eb9115fc29
commit b7f69df3cb
No known key found for this signature in database
GPG key ID: 99658A3EB5CD7C13
2 changed files with 9 additions and 0 deletions

8
modules/direnv.nix Normal file
View file

@ -0,0 +1,8 @@
{ config, pkgs, lib, ... }:
{
programs.direnv = {
enable = true;
enableZshIntegration = true;
enableNixDirenvIntegration = true;
};
}

View file

@ -14,6 +14,7 @@ let
in
{
imports = [
./direnv.nix
./vim
./tmux.nix
./zsh.nix