nixos/copilot/modules/desktop/gaming.nix
2026-02-10 13:41:47 +01:00

16 lines
346 B
Nix

{ config, pkgs, ... }: {
services.xserver.enable = true;
services.xserver.desktopManager.gnome.enable = true;
hardware.opengl = {
enable = true;
driSupport = true;
driSupport32Bit = true;
};
hardware.cpu.amd.updateMicrocode = true;
environment.systemPackages = with pkgs; [
mangohud goverlay lutris vkBasalt
];
}