gui: Use better way to enable 32bit opengl support

pull/48/head
Simon Bruder 2021-01-24 12:51:56 +01:00
parent 617fc28668
commit bcbd5e772a
Signed by: simon
GPG Key ID: 8D3C82F9F309F8EC
1 changed files with 1 additions and 1 deletions

View File

@ -9,5 +9,5 @@ lib.mkIf config.sbruder.gui.enable {
};
# steam (and other high quality software) still ships 32 bit binaries
hardware.opengl.driSupport32Bit = lib.mkIf pkgs.stdenv.isx86_64 true;
hardware.opengl.driSupport32Bit = lib.mkDefault pkgs.stdenv.isx86_64;
}