home-manager/default: Configure XDG_SCREENSHOTS_DIR and EDITOR

This commit is contained in:
fleaz 2022-02-03 17:41:29 +01:00
parent 5892168136
commit 1def2e399d

View file

@ -78,7 +78,11 @@ in {
programs.zsh = { programs.zsh = {
enable = true; enable = true;
sessionVariables = { GOPATH = "/home/fleaz/workspace/go"; }; sessionVariables = {
GOPATH = "/home/fleaz/workspace/go";
EDITOR = "vim";
XDG_SCREENSHOTS_DIR = "/home/fleaz/screenshots/";
};
oh-my-zsh = { oh-my-zsh = {
enable = true; enable = true;
plugins = [ "git" "fzf" ]; plugins = [ "git" "fzf" ];