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 = {

View File

@ -1,4 +1,4 @@
{ pkgs, ... }:
{ pkgs, pkgs-ollama, ... }:
{
home.packages = with pkgs; [
# General packages
@ -8,6 +8,7 @@
nixfmt-rfc-style
wget
fastfetch
pkgs-ollama.ollama
# Package management
pipx