diff options
author | Ben Sima <ben@bsima.me> | 2020-11-30 19:57:02 -0500 |
---|---|---|
committer | Ben Sima <ben@bsima.me> | 2020-11-30 19:57:02 -0500 |
commit | 0a600a4e42172fc7040892e583e824ece5f43b7c (patch) | |
tree | d1db89ba0e58dab1f19dad94d893c423fa84f689 | |
parent | 99ef642dfe29608329f43d7a514cb746b9704533 (diff) |
helium: fixing qutebrowser
-rw-r--r-- | lib/common.nix | 1 | ||||
-rw-r--r-- | linux.nix | 4 |
2 files changed, 5 insertions, 0 deletions
diff --git a/lib/common.nix b/lib/common.nix index 98d187a..585464c 100644 --- a/lib/common.nix +++ b/lib/common.nix @@ -12,6 +12,7 @@ in GPGID = gpgid; EDITOR = "${pkgs.vim}/bin/vim"; LANG = locale; + LC_ALL = locale; LANGUAGE = locale; PATH = "${homedir}/bin:${homedir}/.local/bin:$PATH"; PAGER = "${pkgs.bat}/bin/bat"; @@ -420,6 +420,10 @@ in enable = true; settings = { "colors.webpage.darkmode.enabled" = true; + + # attempting to fix gl rendering + "qt.force_software_rendering" = "qt-quick"; + #"backend" = "webkit"; }; }; |