add nixos & move home-manager config

This commit is contained in:
2025-01-24 19:53:44 -05:00
parent 901cc03d80
commit bb8e2171ce
44 changed files with 406 additions and 25 deletions

View File

@@ -0,0 +1,21 @@
{ config, pkgs, ... }:
{
programs.bash = {
enable = true;
shellAliases = {
grep = "grep --color";
ssh = "TERM=xterm-256color ssh";
flush_dns = "sudo dscacheutil -flushcache; sudo killall -HUP mDNSResponder";
};
profileExtra = ''
SHELL="$BASH"
PATH=~/.bin:$PATH
eval "$(thefuck --alias)"
set -o vi
bind "set show-mode-in-prompt on"
fastfetch
'';
};
}