fixes to bashrc
adds bunch of extra software adds ollama adds emote shortcut
This commit is contained in:
@ -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 = {
|
||||
|
@ -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
|
||||
|
Reference in New Issue
Block a user