Better way of fixing graphics version mismatches

This commit is contained in:
Emmet 2024-05-31 21:08:10 -05:00
parent 67d2f5c36b
commit 30ab570029
2 changed files with 1 additions and 9 deletions

View file

@ -183,6 +183,7 @@
home-manager-stable.inputs.nixpkgs.follows = "nixpkgs-stable";
hyprland.url = "github:hyprwm/Hyprland/cba1ade848feac44b2eda677503900639581c3f4?submodules=1";
hyprland.inputs.nixpkgs.follows = "nixpkgs";
hyprland-plugins.url = "github:hyprwm/hyprland-plugins";
hyprland-plugins.inputs.hyprland.follows = "hyprland";
hycov.url = "github:DreamMaoMao/hycov/115cba558d439cc25d62ce38b7c62cde83f50ef5";

View file

@ -26,13 +26,4 @@ in
};
};
# fixes opengl/mesa version mismatch
hardware.opengl = {
package = pkgs-hyprland.mesa.drivers;
# if you also want 32-bit support (e.g for Steam)
driSupport32Bit = true;
package32 = pkgs-hyprland.pkgsi686Linux.mesa.drivers;
};
services.xserver.displayManager.sddm.package = lib.mkForce pkgs-hyprland.sddm;
}