mirror of
https://github.com/itme-brain/nixos.git
synced 2026-03-24 00:29:43 -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=
|
export DIRENV_LOG_FORMAT=
|
||||||
|
|
||||||
set -o vi
|
|
||||||
|
|
||||||
bind 'set completion-ignore-case on'
|
bind 'set completion-ignore-case on'
|
||||||
bind 'set completion-map-case on'
|
bind 'set completion-map-case on'
|
||||||
''
|
''
|
||||||
|
|
|
||||||
|
|
@ -17,11 +17,6 @@ in
|
||||||
};
|
};
|
||||||
|
|
||||||
programs = {
|
programs = {
|
||||||
direnv = {
|
|
||||||
enable = true;
|
|
||||||
enableBashIntegration = true;
|
|
||||||
nix-direnv.enable = true;
|
|
||||||
};
|
|
||||||
ripgrep.enable = true;
|
ripgrep.enable = true;
|
||||||
lsd = {
|
lsd = {
|
||||||
enable = true;
|
enable = true;
|
||||||
|
|
|
||||||
|
|
@ -18,8 +18,17 @@ in
|
||||||
docker
|
docker
|
||||||
];
|
];
|
||||||
|
|
||||||
programs.bash.initExtra = mkAfter ''
|
programs = {
|
||||||
${import ./config/penpot.nix}
|
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