Advertisement
Guest User

Untitled

a guest
Apr 18th, 2019
90
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.55 KB | None | 0 0
  1. { config, pkgs, lib, ... }:
  2. {
  3. config.home.sessionVariables = rec {
  4. EDITOR = "nvim";
  5. VISUAL = EDITOR;
  6. } // lib.optionals (config.isDesktop) {
  7. SSH_ASKPASS = "${pkgs.gnome3.seahorse}/libexec/seahorse/ssh-askpass";
  8. DESKTOP_SESSION = "gnome";
  9. ECORE_EVAS_ENGINE = "wayland_egl";
  10. ELM_ENGINE = "wayland_egl";
  11. QT_QPA_PLATFORM = "wayland";
  12. QT_WAYLAND_DISABLE_WINDOWDECORATION = "1";
  13. QT_WAYLAND_FORCE_DPI = "physical";
  14. SDL_VIDEODRIVER = "wayland";
  15. XDG_CURRENT_DESKTOP = "GNOME";
  16. _JAVA_AWT_WM_NONREPARENTING = "1";
  17. };
  18. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement