WIP: Switch to NixOS #5

Draft
FunctionalHacker wants to merge 1349 commits from nix into main
Showing only changes of commit 8f81558f9d - Show all commits

View file

@ -4,8 +4,15 @@ alias gac='ga && gc'
alias gpull='git pull'
alias gpush='git push'
# Syntax highlighting cat
alias ncat='nvimpager -c'
# Syntax highlighting cat if output is a terminal
cat() {
# Check if output is a terminal, else use regular cat
if [ -t 1 ]; then
nvimpager -c $@
else
/usr/bin/cat $@
fi
}
rip() {
abcde