76 lines
2.4 KiB
Nix
Executable file
76 lines
2.4 KiB
Nix
Executable file
{ host, ... }:
|
|
{
|
|
imports = [
|
|
./tmux.nix
|
|
./git.nix
|
|
./direnv.nix
|
|
];
|
|
programs.bash = {
|
|
enable = true;
|
|
enableCompletion = true;
|
|
historyControl = [ "ignorespace" ];
|
|
historyIgnore = [
|
|
":q"
|
|
"exit"
|
|
];
|
|
shellAliases = {
|
|
la = "ls -lahrt --color=auto";
|
|
ll = "la";
|
|
":q" = "exit";
|
|
mpv = "mpv --no-keepaspect-window";
|
|
sus = "systemctl suspend";
|
|
hms = "home-manager switch --flake $NIX_FLAKE#${host.username}";
|
|
rbs = "sudo nixos-rebuild switch --flake $NIX_FLAKE#${host.hostName}";
|
|
update = "nix flake update $NIX_FLAKE && rbs && hms";
|
|
nvim-dev = "nix run ~/dev/nvim.nix";
|
|
g = "git";
|
|
k = "kubectl";
|
|
};
|
|
shellOptions = [
|
|
"cmdhist"
|
|
"globstar"
|
|
"dirspell"
|
|
"dotglob"
|
|
"extglob"
|
|
"cdspell"
|
|
"histappend"
|
|
];
|
|
bashrcExtra = ''
|
|
export PROMPT_COMMAND="prompt_command;history -a"
|
|
export PATH="/usr/local/go/bin:~/go/bin:~/.bin:~/.local/bin:$PATH"
|
|
export GPG_2FA="mail@10110110.xyz"
|
|
export MANPAGER="nvim +Man!"
|
|
export EDITOR="nvim"
|
|
export _JAVA_AWT_WM_NONREPARENTING=1
|
|
export NIX_FLAKE="/home/e/dev/nix"
|
|
[[ $- != *i* ]] && return
|
|
function exists {
|
|
type $1 >/dev/null 2>&1
|
|
}
|
|
|
|
function prompt_command {
|
|
GIT_BRANCH=$(git symbolic-ref --short HEAD 2>/dev/null | cut -c 1-10)
|
|
[[ $GIT_BRANCH != "" ]] && \
|
|
PS1="\[\033[38;5;1m\][\u@\h\[$(tput sgr0)\] \[$(tput sgr0)\]\[\033[38;5;7m\]\W\[$(tput sgr0)\]\[\033[38;5;1m\]]\[$(tput sgr0)\]\[$(tput sgr0)\]\[\033[38;5;3m\]($GIT_BRANCH)\[\033[38;5;7m\]\$\[$(tput sgr0)\] " || \
|
|
PS1="\[\033[38;5;1m\][\u@\h\[$(tput sgr0)\] \[$(tput sgr0)\]\[\033[38;5;7m\]\W\[$(tput sgr0)\]\[\033[38;5;1m\]]\[$(tput sgr0)\]\[$(tput sgr0)\]\[\033[38;5;3m\]\[\033[38;5;7m\]\$\[$(tput sgr0)\] "
|
|
}
|
|
bind "set completion-ignore-case on"
|
|
bind "set completion-map-case on"
|
|
bind "set show-all-if-ambiguous on"
|
|
bind "set menu-complete-display-prefix on"
|
|
bind '"\t":menu-complete'
|
|
bind '"\C-k": previous-history'
|
|
bind '"\C-j": next-history'
|
|
function cd {
|
|
cmd="ls --color=auto"
|
|
builtin cd "$@" && $cmd
|
|
}
|
|
exists "kubectl" && source <(kubectl completion bash)
|
|
'';
|
|
};
|
|
programs.fzf = {
|
|
enable = true;
|
|
historyWidgetOptions = ["--height 60% --preview ''"];
|
|
fileWidgetCommand = "command find -L . -mindepth 1 -o -fstype 'sysfs' -o -fstype 'devfs' -o -fstype 'devtmpfs' -o -fstype 'proc' -prune";
|
|
};
|
|
}
|