temp fix (see ./hosts/local/weda/tempfix.nix)

This commit is contained in:
Zonsopkomst 2023-04-01 09:11:46 -05:00
parent 371e624cde
commit 6341615432
2 changed files with 10 additions and 0 deletions

View File

@ -211,6 +211,7 @@
./hosts/local/weda/default.nix
./hosts/local/weda/hardware-configuration.nix
./hosts/local/weda/packages.nix
./hosts/local/weda/tempfixes.nix
# User Specific
./users/zonsopkomst/home-manager.nix

View File

@ -0,0 +1,9 @@
{ config, pkgs, ... }:
{
# Temporarily Fixes the following.
# https://discourse.nixos.org/t/laptop-hangs-at-started-session-c1-of-user-gdm/26834
# https://github.com/NixOS/nixpkgs/pull/223530
# TODO Remove once the PR hits unstable
hardware.opengl.mesaPackage = pkgs.mesa_22;
}