2024-09-09 00:22:14 +00:00
|
|
|
|
{
|
2024-09-13 01:50:53 +00:00
|
|
|
|
config,
|
|
|
|
|
lib,
|
|
|
|
|
...
|
|
|
|
|
}:
|
|
|
|
|
with lib; let
|
|
|
|
|
cfg = config.custom.programs.fish;
|
|
|
|
|
in {
|
|
|
|
|
options.custom.programs.fish.enable = mkOption {default = false;};
|
2024-09-09 00:22:14 +00:00
|
|
|
|
|
|
|
|
|
config = mkIf cfg.enable {
|
|
|
|
|
# https://wiki.nixos.org/wiki/Fish
|
|
|
|
|
# https://github.com/fish-shell/fish-shell
|
2024-09-23 17:10:06 +00:00
|
|
|
|
programs.fish.enable = true;
|
2024-09-15 23:23:14 +00:00
|
|
|
|
|
|
|
|
|
home-manager.users = {
|
2024-09-23 17:10:06 +00:00
|
|
|
|
# Inherit root configuration from user
|
|
|
|
|
root.programs.fish = with config.home-manager.users.${config.custom.username}.programs.fish; {
|
|
|
|
|
inherit enable interactiveShellInit shellAbbrs;
|
2024-09-15 23:23:14 +00:00
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
${config.custom.username}.programs.fish = let
|
|
|
|
|
any = expansion: {
|
|
|
|
|
inherit expansion;
|
|
|
|
|
position = "anywhere";
|
|
|
|
|
};
|
|
|
|
|
in {
|
|
|
|
|
enable = true;
|
|
|
|
|
|
|
|
|
|
shellAbbrs = {
|
|
|
|
|
# Expand abbreviations anywhere in the shell
|
|
|
|
|
#?? sudo ABBREVIATION
|
|
|
|
|
"/e" = any "/etc";
|
|
|
|
|
"/en" = any "/etc/nixos";
|
|
|
|
|
"/h" = any "~";
|
|
|
|
|
"/hd" = any "~/.dev";
|
|
|
|
|
"/n" = any "/nix";
|
|
|
|
|
"/nv" = any "/nix/var";
|
|
|
|
|
"/nvn" = any "/nix/var/nix";
|
|
|
|
|
"/nvnp" = any "/nix/var/nix/profiles";
|
|
|
|
|
"/nvnps" = any "/nix/var/nix/profiles/system";
|
|
|
|
|
"/r" = any "/run";
|
|
|
|
|
"/rc" = any "/run/current-system";
|
|
|
|
|
|
2024-09-25 00:29:20 +00:00
|
|
|
|
reboot = "systemctl reboot";
|
|
|
|
|
restart = "systemctl reboot";
|
|
|
|
|
poweroff = "systemctl poweroff";
|
|
|
|
|
shutdown = "systemctl poweroff";
|
|
|
|
|
|
|
|
|
|
rsync = "rsync --info progress2";
|
|
|
|
|
|
|
|
|
|
a = "adb";
|
|
|
|
|
as = "adb shell";
|
|
|
|
|
asa = "adb shell sh /sdcard/Android/data/com.llamalab.automate/cache/start.sh"; # Automate
|
|
|
|
|
|
2024-10-09 02:31:09 +00:00
|
|
|
|
b = "sudo borgmatic";
|
|
|
|
|
bb = "sudo borgmatic borg";
|
|
|
|
|
bc = "sudo borgmatic create --progress --stats";
|
|
|
|
|
be = "sudo borgmatic extract --progress";
|
|
|
|
|
bi = "sudo borgmatic init -e repokey-blake2";
|
|
|
|
|
bk = "sudo borgmatic key export";
|
|
|
|
|
bl = "sudo borgmatic list";
|
|
|
|
|
bm = "sudo borgmatic mount";
|
|
|
|
|
brl = "sudo borgmatic rlist";
|
|
|
|
|
br = "sudo borgmatic restore";
|
|
|
|
|
bt = "sudo borgmatic export-tar";
|
|
|
|
|
bu = "sudo borgmatic unmount";
|
|
|
|
|
|
2024-09-25 00:29:20 +00:00
|
|
|
|
c = "clear";
|
|
|
|
|
e = "exit";
|
|
|
|
|
m = "mosh";
|
|
|
|
|
s = "ssh";
|
|
|
|
|
|
|
|
|
|
d = "docker";
|
|
|
|
|
dc = "docker compose";
|
|
|
|
|
dcd = "docker compose down";
|
|
|
|
|
dce = "docker compose exec";
|
|
|
|
|
dcl = "docker compose logs";
|
|
|
|
|
dcp = "docker compose pull";
|
|
|
|
|
dcu = "docker compose up";
|
|
|
|
|
dcuf = "docker compose up --force-recreate";
|
|
|
|
|
de = "docker exec";
|
|
|
|
|
dei = "docker exec --interactive";
|
|
|
|
|
deit = "docker exec --interactive --tty";
|
|
|
|
|
det = "docker exec --tty";
|
|
|
|
|
di = "docker images";
|
|
|
|
|
dk = "docker kill";
|
|
|
|
|
dn = "docker network";
|
|
|
|
|
dnl = "docker network ls";
|
|
|
|
|
dp = "docker pull";
|
|
|
|
|
dps = "docker ps";
|
|
|
|
|
dpsa = "docker ps --all --size";
|
|
|
|
|
dr = "docker rm";
|
|
|
|
|
ds = "docker system";
|
|
|
|
|
dsp = "docker system prune";
|
|
|
|
|
dspav = "docker system prune --all --volumes";
|
|
|
|
|
|
|
|
|
|
g = "git";
|
|
|
|
|
gb = "git bisect";
|
|
|
|
|
gbb = "git bisect bad";
|
|
|
|
|
gbg = "git bisect good";
|
|
|
|
|
gc = "git clone";
|
|
|
|
|
gs = "git status";
|
|
|
|
|
|
2024-09-23 17:10:06 +00:00
|
|
|
|
jc = "journalctl";
|
|
|
|
|
jcs = "journalctl --system";
|
|
|
|
|
jcse = "journalctl --system --pager-end";
|
|
|
|
|
jcseu = "journalctl --system --pager-end --unit";
|
|
|
|
|
jcsf = "journalctl --system --follow";
|
|
|
|
|
jcsfu = "journalctl --system --follow --unit";
|
|
|
|
|
jcsi = "journalctl --system --identifier";
|
|
|
|
|
jcsu = "journalctl --system --unit";
|
|
|
|
|
jcu = "journalctl --user";
|
|
|
|
|
jcue = "journalctl --user --pager-end";
|
|
|
|
|
jcueu = "journalctl --user --pager-end --unit";
|
|
|
|
|
jcuf = "journalctl --user --follow";
|
|
|
|
|
jcufu = "journalctl --user --follow --unit";
|
|
|
|
|
jcui = "journalctl --user --identifier";
|
|
|
|
|
jcuu = "journalctl --user --unit";
|
|
|
|
|
|
2024-09-25 00:29:20 +00:00
|
|
|
|
k = "kitten";
|
|
|
|
|
ks = "kitten ssh";
|
|
|
|
|
|
|
|
|
|
n = "nixos";
|
|
|
|
|
nb = "nixos build";
|
|
|
|
|
nbb = "nixos build boot";
|
|
|
|
|
nbs = "nixos build switch";
|
|
|
|
|
nbt = "nixos build test";
|
|
|
|
|
nd = "nixos diff";
|
|
|
|
|
ng = "nixos generate";
|
|
|
|
|
nl = "nixos list";
|
|
|
|
|
nr = "nixos repl";
|
|
|
|
|
|
2024-09-23 17:10:06 +00:00
|
|
|
|
sc = "systemctl";
|
|
|
|
|
scp = "systemctl poweroff";
|
|
|
|
|
scr = "systemctl reboot";
|
|
|
|
|
scs = "systemctl --system";
|
|
|
|
|
scsd = "systemctl --system disable";
|
|
|
|
|
scsdn = "systemctl --system disable --now";
|
|
|
|
|
scse = "systemctl --system reenable";
|
|
|
|
|
scsen = "systemctl --system reenable --now";
|
|
|
|
|
scsh = "systemctl --system show";
|
|
|
|
|
scsl = "systemctl --system list-unit-files";
|
|
|
|
|
scsm = "systemctl --system mask";
|
|
|
|
|
scsr = "systemctl --system restart";
|
|
|
|
|
scsrr = "systemctl --system reload-or-restart";
|
|
|
|
|
scss = "systemctl --system status";
|
|
|
|
|
scst = "systemctl --system stop";
|
|
|
|
|
scsu = "systemctl --system unmask";
|
|
|
|
|
scu = "systemctl --user";
|
|
|
|
|
scud = "systemctl --user disable";
|
|
|
|
|
scudn = "systemctl --user disable --now";
|
|
|
|
|
scue = "systemctl --user reenable";
|
|
|
|
|
scuen = "systemctl --user reenable --now";
|
|
|
|
|
scuh = "systemctl --user show";
|
|
|
|
|
scul = "systemctl --user list-unit-files";
|
|
|
|
|
scum = "systemctl --user mask";
|
|
|
|
|
scur = "systemctl --user restart";
|
|
|
|
|
scurr = "systemctl --user reload-or-restart";
|
|
|
|
|
scus = "systemctl --user status";
|
|
|
|
|
scut = "systemctl --user stop";
|
|
|
|
|
scuu = "systemctl --user unmask";
|
|
|
|
|
|
2024-09-15 23:23:14 +00:00
|
|
|
|
ta = "tmux attach";
|
|
|
|
|
td = "tmux detach";
|
|
|
|
|
tk = "tmux kill-session";
|
|
|
|
|
tl = "tmux list-sessions";
|
2024-09-28 18:25:03 +00:00
|
|
|
|
|
|
|
|
|
ts = "tailscale";
|
|
|
|
|
tsip = "tailscale ip --4";
|
|
|
|
|
|
|
|
|
|
zt = "sudo zerotier-cli";
|
|
|
|
|
ztip = "sudo zerotier-cli get $(sudo zerotier-cli -j listnetworks | jq -r .[-1].id) ip";
|
2024-09-15 23:23:14 +00:00
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
interactiveShellInit = ''
|
2024-09-23 17:10:06 +00:00
|
|
|
|
### Prompt
|
|
|
|
|
# Disable greeting
|
|
|
|
|
set -g fish_greeting
|
|
|
|
|
|
|
|
|
|
function fish_prompt --description 'Write out the prompt'
|
|
|
|
|
set -l last_status $status
|
|
|
|
|
set -l normal (set_color normal)
|
|
|
|
|
set -l status_color (set_color brgreen)
|
|
|
|
|
set -l cwd_color (set_color $fish_color_cwd)
|
|
|
|
|
set -l vcs_color (set_color brpurple)
|
|
|
|
|
set -l prompt_status ""
|
|
|
|
|
|
|
|
|
|
# Since we display the prompt on a new line allow the directory names to be longer.
|
|
|
|
|
set -q fish_prompt_pwd_dir_length
|
|
|
|
|
or set -lx fish_prompt_pwd_dir_length 0
|
|
|
|
|
|
|
|
|
|
# Color the prompt differently when we're root
|
|
|
|
|
set -l suffix '❯'
|
|
|
|
|
if functions -q fish_is_root_user; and fish_is_root_user
|
|
|
|
|
if set -q fish_color_cwd_root
|
|
|
|
|
set cwd_color (set_color $fish_color_cwd_root)
|
|
|
|
|
end
|
|
|
|
|
set suffix '#'
|
|
|
|
|
end
|
|
|
|
|
|
|
|
|
|
# Color the prompt in red on error
|
|
|
|
|
if test $last_status -ne 0
|
|
|
|
|
set status_color (set_color $fish_color_error)
|
|
|
|
|
set prompt_status $status_color "[" $last_status "]" $normal
|
|
|
|
|
end
|
|
|
|
|
|
|
|
|
|
echo -s (prompt_login) ' ' $cwd_color (prompt_pwd) $vcs_color (fish_vcs_prompt) $normal ' ' $prompt_status
|
|
|
|
|
echo -n -s $status_color $suffix ' ' $normal
|
|
|
|
|
end
|
|
|
|
|
|
|
|
|
|
### Interactive
|
2024-09-15 23:23:14 +00:00
|
|
|
|
# Default is brblack (bright0)
|
|
|
|
|
set -g fish_color_autosuggestion brgreen
|
|
|
|
|
|
|
|
|
|
function exit -d 'Always exit successfully when interactive'
|
|
|
|
|
builtin exit 0
|
|
|
|
|
end
|
|
|
|
|
|
|
|
|
|
# TODO: Pass flags properly
|
|
|
|
|
# TODO: Convert to bash
|
|
|
|
|
function run -d 'Run packages via nixpkg flakes'
|
|
|
|
|
for i in (seq (count $argv))
|
|
|
|
|
if ! string match -r '^-' -- $argv[$i]
|
|
|
|
|
set argv[$i] (string replace -r ^ nixpkgs# $argv[$i])
|
|
|
|
|
end
|
|
|
|
|
end
|
|
|
|
|
nix run $argv
|
|
|
|
|
end
|
|
|
|
|
|
|
|
|
|
function shell -d 'Open packages in new shell via nixpkg flakes'
|
|
|
|
|
for i in (seq (count $argv))
|
|
|
|
|
if ! string match -r '^-' -- $argv[$i]
|
|
|
|
|
set argv[$i] (string replace -r ^ nixpkgs# $argv[$i])
|
|
|
|
|
end
|
|
|
|
|
end
|
|
|
|
|
nix shell $argv
|
|
|
|
|
end
|
|
|
|
|
|
|
|
|
|
function activate -d 'Activate Python venv'
|
|
|
|
|
source .venv/bin/activate.fish
|
|
|
|
|
end
|
|
|
|
|
'';
|
|
|
|
|
};
|
|
|
|
|
};
|
2024-09-09 00:22:14 +00:00
|
|
|
|
};
|
|
|
|
|
}
|