16 lines
269 B
Nix
16 lines
269 B
Nix
{ ... }:
|
|
|
|
{
|
|
home-manager.users.charlotte = { ... }: {
|
|
programs.direnv = {
|
|
enable = true;
|
|
enableZshIntegration = true;
|
|
config = {
|
|
global = {
|
|
strict_env = true;
|
|
};
|
|
};
|
|
};
|
|
services.lorri.enable = true;
|
|
};
|
|
}
|