mirror of
https://github.com/Ahwxorg/nixos-config.git
synced 2025-12-04 23:00:14 +01:00
18 lines
327 B
Nix
18 lines
327 B
Nix
{ pkgs, ... }:
|
|
{
|
|
hardware = {
|
|
graphics = {
|
|
enable = true;
|
|
};
|
|
enableRedistributableFirmware = true;
|
|
opengl = {
|
|
extraPackages = with pkgs; [
|
|
amdvlk
|
|
];
|
|
# For 32 bit applications as well
|
|
extraPackages32 = with pkgs; [
|
|
driversi686Linux.amdvlk
|
|
];
|
|
};
|
|
};
|
|
}
|