Add direnv to imports

This commit is contained in:
Bad 2021-04-13 07:03:00 +00:00
parent cc4ef3f90a
commit 79668bebc1
2 changed files with 2 additions and 1 deletions

View file

@ -1,7 +1,7 @@
{ pkgs, ... }: { pkgs, ... }:
{ {
home-manager.users.mae = { home-manager.users.mae = {
imports = [ ../profiles/git ../profiles/zsh ../profiles/neovim ]; imports = [ ../profiles/direnv ../profiles/git ../profiles/zsh ../profiles/neovim ];
home.packages = with pkgs; [ home.packages = with pkgs; [
arc-theme arc-theme
]; ];

View file

@ -25,4 +25,5 @@
${builtins.readFile ./p10k.zsh} ${builtins.readFile ./p10k.zsh}
''; '';
}; };
programs.direnv.enableZshIntegration = true;
} }