19 lines
342 B
Bash
19 lines
342 B
Bash
|
|
HISTFILE=~/.histfile
|
|
HISTSIZE=1000
|
|
SAVEHIST=10000
|
|
setopt autocd extendedglob nomatch notify
|
|
unsetopt beep
|
|
bindkey -v
|
|
|
|
zstyle :compinstall filename '/home/poslop/.zshrc'
|
|
|
|
autoload -Uz compinit
|
|
compinit
|
|
|
|
rerice() {
|
|
local flake_dir="/etc/rice-flakes"
|
|
host="${1:-$(hostname -s)}"
|
|
sudo nixos-rebuild switch --flake "${flake_dir}#${host}"
|
|
}
|