diff options
author | sils <sils@sils.li> | 2023-04-20 18:25:45 +0200 |
---|---|---|
committer | sils <sils@sils.li> | 2023-04-20 18:31:19 +0200 |
commit | 8b5e6cfeed2b5c7088cdf8a98bacee72ad6cabd4 (patch) | |
tree | bd77dade79e8c7e6f6f3a136d53fd5518d9ffcb9 /zsh.nix | |
parent | Feat(packages.nix): Add pinentry (diff) | |
download | nix-config-8b5e6cfeed2b5c7088cdf8a98bacee72ad6cabd4.tar.gz nix-config-8b5e6cfeed2b5c7088cdf8a98bacee72ad6cabd4.zip |
Feat(structure): Restructured repository
This is mainly convenience and my personal preference.
Diffstat (limited to 'zsh.nix')
-rw-r--r-- | zsh.nix | 48 |
1 files changed, 0 insertions, 48 deletions
diff --git a/zsh.nix b/zsh.nix deleted file mode 100644 index c51bcb7..0000000 --- a/zsh.nix +++ /dev/null @@ -1,48 +0,0 @@ -{ - config, - pkgs, - ... -}: { - programs.zsh = { - enable = true; - syntaxHighlighting.enable = true; - autosuggestions.enable = true; - interactiveShellInit = '' - export ZSH=${pkgs.oh-my-zsh}/share/oh-my-zsh/ - export fpath=("$XDG_DATA_HOME/zsh/site-functions" $fpath) - HISTFILE="$XDG_STATE_HOME/zsh/history" - - plugins=(git) - - alias vim="nvim" - alias ls='lsd' - alias l='ls -l' - alias la='ls -a' - alias lla='ls -la' - alias lt='ls --tree' - alias rebackup='restic -r /mnt/storage/backups --password-file ~/srv/restic_pswd backup' - alias repreconf='restic -r /mnt/storage/backups --password-file ~/srv/restic_pswd' - alias b-del="sudo btrfs subv delet /srv/snapshots/home" - alias b-shot="sudo btrfs subvolume snapshot -r /home /srv/snapshots/home" - alias b-home='[ -d /srv/snapshots/home ] && sudo btrfs subvolume delete /srv/snapshots/home; sudo btrfs subvolume snapshot -r /home /srv/snapshots/home; sudo restic -r /mnt/storage/backups --password-file ~/srv/restic_pswd --cache-dir /srv/.restic-cache backup /srv/snapshots/home;' - alias r-clean="sudo restic -r /mnt/storage/backups --password-file ~/srv/restic_pswd --cache-dir /srv/.restic-cache forget \ - --keep-weekly 7 \ - --keep-daily 7 \ - --keep-monthly 6 \ - --keep-yearly 10 \ - --keep-hourly 5 \ - --keep-tag prs" - alias r-prune="sudo restic -r /mnt/storage/backups --password-file ~/srv/restic_pswd --cache-dir /srv/.restic-cache prune" - alias r-check="sudo restic -r /mnt/storage/backups --cache-dir /srv/.restic-cache --password-file ~/srv/.restic_pswd check" - alias zconf="vim ~/.config/zsh/.zshrc" - alias zenv="vim ~/.config/zsh/.zshenv" - alias o="xdg-open" - alias wget=wget --hsts-file="$XDG_DATA_HOME/wget-hsts" - - - source $ZSH/oh-my-zsh.sh - ''; - - promptInit = "source ${pkgs.zsh-powerlevel10k}/share/zsh-powerlevel10k/powerlevel10k.zsh-theme"; - }; -} |