Files
nixos/system/graphics.nix
T
2025-06-30 15:42:14 -05:00

12 lines
270 B
Nix

{pkgs, ...}: {
hardware.graphics = {
enable = true;
enable32Bit = true; # Crucial for 32-bit games
};
programs.corectrl = {
enable = true;
};
systemd.packages = with pkgs; [corectrl];
systemd.services.corectrl.wantedBy = ["multi-user.target"];
}