nixos-configs/nixos/home/bashdots.nix

150 lines
3.7 KiB
Nix
Raw Normal View History

2023-10-06 00:14:23 -04:00
{ lib, ... }:
2023-06-26 17:29:17 -04:00
{
2023-10-07 01:44:29 -04:00
programs.starship = {
enable = true;
enableBashIntegration = true;
settings = {
format = lib.concatStrings [
""
"[](fg:#bd93f9)"
"[ ](bg:#bd93f9 fg:#090c0c)"
"[](bg:#715895 fg:#bd93f9)"
"$username$hostname"
"[](fg:#715895 bg:#382c4a)"
"$directory"
"[](fg:#382c4a bg:#120e18)"
"$git_branch"
"[](fg:#120e18)"
"\n$shlvl$nix_shell$character"
2023-10-07 01:44:29 -04:00
];
nix_shell = {
2023-10-07 13:50:41 -04:00
symbol = " ";
format = "[$symbol]($style)";
};
2023-10-07 01:44:29 -04:00
username = {
show_always = true;
style_user = "fg:#e3e5e5 bg:#715895";
format = "[ $user]($style)";
};
hostname = {
ssh_only = false;
style = "fg:#e3e5e5 bg:#715895";
format = "[@$hostname ]($style)";
};
shlvl = {
disabled = false;
repeat = true;
symbol = "󰔳 ";
format = "[$symbol]($style)";
threshold = 1;
};
character = {
success_symbol = "[\\$](bold green)";
error_symbol = "[\\$](bold red)";
};
directory = {
style = "fg:#bd93f9 bg:#382c4a";
format = "[ $path ]($style)";
truncate_to_repo = false;
2023-10-07 01:57:16 -04:00
truncation_length = 0;
2023-10-07 01:44:29 -04:00
};
directory.substitutions = {
"Documents" = "󰈙 ";
"Downloads" = " ";
"Music" = " ";
"Pictures" = " ";
};
git_branch = {
style = "fg:#715895 bg:#120e18";
symbol = "";
format = "[ $symbol $branch ]($style)";
};
};
};
2023-06-26 17:29:17 -04:00
programs.bash = { # TODO: deal with root dotfiles
enable = true;
enableCompletion = true;
#enableVteIntegration = false; what is this?
historyFile = "\$HOME/.cache/.bash_history";
historyFileSize = 100000; # default
historySize = 10000; # default
historyControl = [
"erasedups"
"ignorespace"
];
historyIgnore = [
"ls"
"exit"
"logout"
];
shellOptions = [
"histappend"
"checkwinsize"
"extglob"
"globstar"
"checkjobs"
"autocd"
"cdspell"
"dirspell"
"dotglob"
2023-09-29 23:46:34 -04:00
];
2023-06-26 17:29:17 -04:00
shellAliases = {
sudo = "sudo ";
frick = "sudo $(fc -ln -1)";
vi = "nvim";
vim = "nvim";
nivm = "nvim";
nivim = "nvim";
2023-06-26 17:29:17 -04:00
tmux = "tmux -2";
ls = "ls -lah --color=auto";
cp = "cp -r";
chore = "(cd ~/.nix/nixos; git add flake.lock; git commit -m 'chore: update flake.lock'; git push)";
2023-06-26 17:29:17 -04:00
tup = "tailscale up --login-server https://headscale.nelim.org";
pc = "mosh matt@10.0.0.248 -- tmux -2u new -At laptop";
oksys = "mosh matt@10.0.0.213 -- tmux -2u new -At laptop";
pve = "mosh matt@10.0.0.121 -- tmux -2u new -At laptop";
mc = "mosh mc@10.0.0.124 -- tmux -2u new -At laptop";
pod = "mosh matt@10.0.0.121 -- ssh -t -p 6768 matt@10.0.0.122 'tmux -2u new -At laptop'";
jelly = "mosh matt@10.0.0.121 -- ssh -t matt@10.0.0.123 'tmux -2u new -At laptop'";
qbit = "mosh matt@10.0.0.121 -- ssh -t matt@10.0.0.128 'tmux -2u new -At laptop'";
};
sessionVariables = { # see configuration.nix
2023-06-26 17:29:17 -04:00
};
profileExtra = ''
export POKE=true
[[ -f ~/.bashrc ]] && . ~/.bashrc
'';
bashrcExtra = ''
2023-10-06 00:14:23 -04:00
${lib.strings.fileContents ../../config/bash/dracula/less.sh}
${lib.strings.fileContents ../../config/bash/dracula/fzf.sh}
2023-07-09 13:08:30 -04:00
2023-10-06 00:14:23 -04:00
${lib.strings.fileContents ../../config/bash/colorgrid.sh}
${lib.strings.fileContents ../../config/bash/bashrc}
2023-06-26 17:29:17 -04:00
'';
#initExtra = ''
#'';
#logoutExtra = ''
#'';
};
}