mirror of
https://github.com/itme-brain/nixos.git
synced 2026-03-23 16:29:42 -04:00
modularized further
This commit is contained in:
parent
89acce0159
commit
fdad9191aa
3 changed files with 12 additions and 10 deletions
|
|
@ -1,8 +1,6 @@
|
|||
''
|
||||
export DIRENV_LOG_FORMAT=
|
||||
|
||||
set -o vi
|
||||
|
||||
bind 'set completion-ignore-case on'
|
||||
bind 'set completion-map-case on'
|
||||
''
|
||||
|
|
|
|||
|
|
@ -17,11 +17,6 @@ in
|
|||
};
|
||||
|
||||
programs = {
|
||||
direnv = {
|
||||
enable = true;
|
||||
enableBashIntegration = true;
|
||||
nix-direnv.enable = true;
|
||||
};
|
||||
ripgrep.enable = true;
|
||||
lsd = {
|
||||
enable = true;
|
||||
|
|
|
|||
|
|
@ -18,8 +18,17 @@ in
|
|||
docker
|
||||
];
|
||||
|
||||
programs.bash.initExtra = mkAfter ''
|
||||
${import ./config/penpot.nix}
|
||||
'';
|
||||
programs = {
|
||||
bash = {
|
||||
initExtra = mkAfter ''
|
||||
${import ./config/penpot.nix}
|
||||
'';
|
||||
};
|
||||
direnv = {
|
||||
enable = true;
|
||||
enableBashIntegration = true;
|
||||
nix-direnv.enable = true;
|
||||
};
|
||||
};
|
||||
};
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue