16 lines
346 B
Nix
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
|
|
];
|
|
}
|