nix-conf/modules/home-manager/session-vars/default.nix

23 lines
564 B
Nix
Raw Permalink Normal View History

2024-04-11 12:12:42 +00:00
_: {
home.sessionVariables = {
# default editor
EDITOR = "nvim";
NIXPKGS_ALLOW_UNFREE = 1;
# sshaskpass
SSH_ASKPASS = "/home/user/.nix-profile/bin/ksshaskpass";
SSH_ASKPASS_REQUIRE = "prefer";
# Store git credentials in KDE Wallet
GIT_ASKPASS = "/home/user/.nix-profile/bin/ksshaskpass";
2024-04-27 16:42:24 +00:00
2024-09-16 04:33:37 +00:00
#WAYLAND_DISPLAY = "wayland-1";
2024-09-11 09:01:45 +00:00
QT_QPA_PLATFORM = "xcb";
2024-09-16 04:33:37 +00:00
#QT_WAYLAND_DISABLE_WINDOWDECORATION = "1";
#SDL_VIDEODRIVER = "wayland";
#CLUTTER_BACKEND = "wayland";
#MOZ_ENABLE_WAYLAND = "1";
2024-04-27 16:42:24 +00:00
DISPLAY = ":0";
2024-04-11 12:12:42 +00:00
};
}