10 lines
153 B
Nix
10 lines
153 B
Nix
{ config, lib, pkgs, ... }:
|
|
|
|
{
|
|
# enable GPU acceleration (mesa, vulkan, egl)
|
|
hardware.graphics = {
|
|
enable = true;
|
|
enable32Bit = true;
|
|
};
|
|
}
|