dotfiles/nixos/environment.nix

71 lines
1.9 KiB
Nix
Raw Normal View History

2021-08-02 03:13:44 -06:00
{ config, pkgs, options, lib, ... }:
with lib;
{
options = {
dotfiles-directory = mkOption {
type = types.str;
default = "/home/imalison/dotfiles";
};
};
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
'';
};
programs.starship = {
enableBashIntegration = true;
enableZshIntegration = true;
enable = true;
};
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'";
};
interactiveShellInit = ''
2021-08-21 17:39:43 -06:00
vterm_printf(){
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 = ''
export ROFI_SYSTEMD_TERM="alacritty -e"
2021-08-02 03:13:44 -06:00
export PATH="${libDir}/bin:$PATH"
export PATH="${libDir}/functions:$PATH"
'';
};
};
}