|
|
|
@ -7,9 +7,15 @@ |
|
|
|
home.homeDirectory = "/home/hblobner"; |
|
|
|
|
|
|
|
# Packages that should be installed to the user profile. |
|
|
|
home.packages = [ |
|
|
|
pkgs.htop |
|
|
|
pkgs.fortune |
|
|
|
home.packages = with pkgs; [ |
|
|
|
alacritty |
|
|
|
fasd |
|
|
|
fd |
|
|
|
htop |
|
|
|
fortune |
|
|
|
python3 |
|
|
|
ripgrep |
|
|
|
rsync |
|
|
|
]; |
|
|
|
|
|
|
|
# This value determines the Home Manager release that your |
|
|
|
@ -48,22 +54,17 @@ |
|
|
|
|
|
|
|
shellAliases = { |
|
|
|
# show dirs only |
|
|
|
alias ld="ls -lF --color=always | grep --color=never '^d' "; |
|
|
|
ld = "ls -lF --color=always | grep --color=never '^d' "; |
|
|
|
# show files only |
|
|
|
alias lf="ls -lF --color=always | grep --color=never -v '^d' "; |
|
|
|
alias ll="ls -aGFhl --color=always "; |
|
|
|
lf = "ls -lF --color=always | grep --color=never -v '^d' "; |
|
|
|
ll = "ls -aGFhl --color=always "; |
|
|
|
|
|
|
|
alias rs="rsync -a --info=progress2 "; |
|
|
|
rs = "rsync -a --info=progress2 "; |
|
|
|
|
|
|
|
alias sudo="sudo "; |
|
|
|
sudo = "sudo "; |
|
|
|
}; |
|
|
|
}; |
|
|
|
|
|
|
|
home.packages = with pkgs; [ |
|
|
|
alacritty |
|
|
|
python3 |
|
|
|
]; |
|
|
|
|
|
|
|
home.sessionVariables = { |
|
|
|
EDITOR = "nvim"; |
|
|
|
TERM = "alacritty"; |
|
|
|
|