mirror of
https://github.com/donovanglover/nix-config.git
synced 2025-06-24 19:51:30 +02:00
desktop: only enable 32-bit graphics on x86_64-linux
Should fix an assertion issue with aarch64.
This commit is contained in:
parent
8c9b84dfbd
commit
ad599dfc28
@ -25,7 +25,7 @@ in
|
|||||||
};
|
};
|
||||||
|
|
||||||
config = {
|
config = {
|
||||||
hardware.graphics.enable32Bit = true;
|
hardware.graphics.enable32Bit = mkIf (pkgs.system == "x86_64-linux") true;
|
||||||
|
|
||||||
programs = {
|
programs = {
|
||||||
hyprland.enable = mkIf (!isContainer) true;
|
hyprland.enable = mkIf (!isContainer) true;
|
||||||
|
Loading…
x
Reference in New Issue
Block a user