fixes to bashrc

adds bunch of extra software
adds ollama
adds emote shortcut
This commit is contained in:
2024-11-03 03:06:24 +01:00
parent 93e4f8462e
commit 0c0ccab938
15 changed files with 110 additions and 30 deletions

View File

@ -1,8 +1,16 @@
{ config, pkgs, ... }:
{
home.file.".bashrc.extra".source = "${config.home.homeDirectory}/dotfiles/.bashrc";
programs.bash = {
enable = true;
enableCompletion = true;
initExtra = ''
if [ -f ~/.bashrc.extra ]; then
source ~/.bashrc.extra
fi
'';
};
programs.fzf = {