modularized further

This commit is contained in:
Bryan Ramos 2024-05-11 15:15:19 -04:00
parent 89acce0159
commit fdad9191aa
Signed by: bryan
GPG key ID: 6ABDCD144D6643C8
3 changed files with 12 additions and 10 deletions

View file

@ -1,8 +1,6 @@
''
export DIRENV_LOG_FORMAT=
set -o vi
bind 'set completion-ignore-case on'
bind 'set completion-map-case on'
''

View file

@ -17,11 +17,6 @@ in
};
programs = {
direnv = {
enable = true;
enableBashIntegration = true;
nix-direnv.enable = true;
};
ripgrep.enable = true;
lsd = {
enable = true;

View file

@ -18,8 +18,17 @@ in
docker
];
programs.bash.initExtra = mkAfter ''
programs = {
bash = {
initExtra = mkAfter ''
${import ./config/penpot.nix}
'';
};
direnv = {
enable = true;
enableBashIntegration = true;
nix-direnv.enable = true;
};
};
};
}