2021-08-02 03:13:44 -06:00
|
|
|
{ config, pkgs, options, lib, ... }:
|
|
|
|
with lib;
|
|
|
|
{
|
|
|
|
options = {
|
|
|
|
dotfiles-directory = mkOption {
|
2023-06-28 22:46:04 -06:00
|
|
|
type = types.path;
|
2023-06-28 22:39:07 -06:00
|
|
|
default = ../.;
|
2021-08-02 03:13:44 -06:00
|
|
|
};
|
|
|
|
};
|
|
|
|
|
|
|
|
config = let libDir = "${config.dotfiles-directory}/dotfiles/lib";
|
|
|
|
in {
|
|
|
|
# Shell configuration
|
|
|
|
programs.zsh = {
|
|
|
|
enable = true;
|
|
|
|
syntaxHighlighting = {
|
|
|
|
enable = true;
|
|
|
|
};
|
|
|
|
ohMyZsh = {
|
|
|
|
enable = true;
|
|
|
|
plugins = [ "git" "sudo" "pip" ];
|
|
|
|
};
|
|
|
|
shellInit = ''
|
|
|
|
fpath+="${libDir}/functions"
|
|
|
|
for file in "${libDir}/functions/"*
|
|
|
|
do
|
|
|
|
autoload "''${file##*/}"
|
|
|
|
done
|
|
|
|
'';
|
|
|
|
};
|
|
|
|
|
2021-08-05 19:06:57 -06:00
|
|
|
programs.starship = {
|
|
|
|
enable = true;
|
2023-08-04 00:45:23 -06:00
|
|
|
settings = """
|
2023-08-04 00:42:19 -06:00
|
|
|
add_newline = false
|
|
|
|
|
|
|
|
[character]
|
|
|
|
success_symbol = "[➜](bold green)"
|
|
|
|
error_symbol = "[➜](bold red)"
|
2023-08-04 00:45:23 -06:00
|
|
|
""";
|
2021-08-05 19:06:57 -06:00
|
|
|
};
|
|
|
|
|
2021-08-02 03:13:44 -06:00
|
|
|
environment = {
|
|
|
|
homeBinInPath = true;
|
|
|
|
localBinInPath = true;
|
2021-08-21 17:39:43 -06:00
|
|
|
shellAliases = {
|
|
|
|
df_ssh = "TERM='xterm-256color ssh -o StrictHostKeyChecking=no'";
|
|
|
|
};
|
2021-08-05 19:06:57 -06:00
|
|
|
interactiveShellInit = ''
|
2021-08-21 17:39:43 -06:00
|
|
|
vterm_printf(){
|
2021-08-05 19:06:57 -06:00
|
|
|
if [ -n "$TMUX" ] && ([ "''${TERM%%-*}" = "tmux" ] || [ "''${TERM%%-*}" = "screen" ] ); then
|
|
|
|
# Tell tmux to pass the escape sequences through
|
|
|
|
printf "\ePtmux;\e\e]%s\007\e\\" "$1"
|
|
|
|
elif [ "''${TERM%%-*}" = "screen" ]; then
|
|
|
|
# GNU screen (screen, screen-256color, screen-256color-bce)
|
|
|
|
printf "\eP\e]%s\007\e\\" "$1"
|
|
|
|
else
|
|
|
|
printf "\e]%s\e\\" "$1"
|
|
|
|
fi
|
|
|
|
}
|
|
|
|
if [[ "$INSIDE_EMACS" = 'vterm' ]] \
|
|
|
|
&& [[ -n ''${EMACS_VTERM_PATH} ]] \
|
|
|
|
&& [[ -f ''${EMACS_VTERM_PATH}/etc/emacs-vterm-bash.sh ]]; then
|
|
|
|
source ''${EMACS_VTERM_PATH}/etc/emacs-vterm-bash.sh
|
|
|
|
fi
|
|
|
|
export STARSHIP_INSIDE_EMACS="yes"
|
|
|
|
'';
|
2021-08-02 03:13:44 -06:00
|
|
|
extraInit = ''
|
2021-08-02 06:13:16 -06:00
|
|
|
export ROFI_SYSTEMD_TERM="alacritty -e"
|
2021-08-02 03:13:44 -06:00
|
|
|
export PATH="${libDir}/bin:$PATH"
|
|
|
|
export PATH="${libDir}/functions:$PATH"
|
2022-01-25 22:21:44 -07:00
|
|
|
export PATH="$HOME/.cargo/bin:$PATH"
|
2021-08-02 03:13:44 -06:00
|
|
|
'';
|
|
|
|
};
|
|
|
|
};
|
|
|
|
}
|