First direnv + lorri setup

This commit is contained in:
Charlotte Van Petegem 2020-02-10 21:30:52 +01:00
parent a8acd67b18
commit 710b563cf7
3 changed files with 21 additions and 0 deletions

View file

@ -0,0 +1,16 @@
{ ... }:
{
home-manager.users.charlotte = { ... }: {
programs.direnv = {
enable = true;
enableZshIntegration = true;
config = {
global = {
strict_env = true;
};
};
};
services.lorri.enable = true;
};
}