[NixOS] Set LIBGL_ALWAYS_SOFTWARE=1 for raspberry pi

This commit is contained in:
Ivan Malison 2021-08-21 19:06:26 +00:00
parent 5b9febb4d8
commit 910783f309

View File

@ -43,6 +43,13 @@
raspberrypi-eeprom
];
environment = {
# This allows alacritty to run
extraInit = ''
export LIBGL_ALWAYS_SOFTWARE=1
'';
};
nix = {
autoOptimiseStore = true;
gc = {