1
0
Fork 0

improvements

This commit is contained in:
Lukas Wurzinger 2024-03-08 22:46:46 +01:00
parent 48dcdc5a44
commit 9dffcd14b7
32 changed files with 640 additions and 623 deletions

11
common/direnv.nix Normal file
View file

@ -0,0 +1,11 @@
{
config,
lib,
...
}: {
programs.direnv.enable = true;
programs.bash.interactiveShellInit = ''
eval "$(${lib.getExe config.programs.direnv.package} hook bash)"
'';
}