blob: f300cfe3e47794421e1425606571cc89203ce55e (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
if status is-interactive
# Commands to run in interactive sessions can go here
alias quit exit
alias cat "bat --paging=never"
alias ds "sudo -E guix system -L ~/.config/guix/modules reconfigure ~/.config/guix/$(prompt_hostname).scm"
alias dh "guix home -L ~/.config/guix/modules reconfigure ~/.config/guix/home-config/home-configuration.scm && home-manager switch"
alias gc "git -C ~/.config/guix add . && git -C ~/.config/guix commit && git -C ~/.config/guix push all"
alias cg "git -C ~/.config/guix pull"
alias cgh "git -C ~/.config/guix pull stationeryh main"
set -gx EDITOR nvim
set -gax XDG_DATA_DIRS ~/.nix-profile/share
fish_add_path ~/.local/bin
fish_add_path ~/.nix-profile/bin
end
|