fixing the environment containing a bad variable

This commit is contained in:
Chris Cochrun 2023-01-13 05:48:52 -06:00
parent 9d0b89300a
commit 8ec7c16e20
2 changed files with 1 additions and 1 deletions

1
.envrc
View file

@ -1,4 +1,3 @@
export NIXPKGS_ALLOW_INSECURE=1 export NIXPKGS_ALLOW_INSECURE=1
export QT_AUTO_SCREEN_SCALE_FACTOR=1 export QT_AUTO_SCREEN_SCALE_FACTOR=1
export QT_SCALE_FACTOR=0.75
use flake . --impure use flake . --impure

View file

@ -50,6 +50,7 @@ mkShell rec {
]; ];
RUST_BACKTRACE = 1; RUST_BACKTRACE = 1;
QT_SCALE_FACTOR = 1;
# This creates the proper qt env so that plugins are found right. # This creates the proper qt env so that plugins are found right.
shellHook = '' shellHook = ''
setQtEnvironment=$(mktemp --suffix .setQtEnvironment.sh) setQtEnvironment=$(mktemp --suffix .setQtEnvironment.sh)