13 lines
184 B
Nix
13 lines
184 B
Nix
{ pkgs, ... }:
|
|
{
|
|
hardware = {
|
|
graphics = {
|
|
enable = true;
|
|
extraPackages = with pkgs; [
|
|
|
|
];
|
|
};
|
|
};
|
|
hardware.enableRedistributableFirmware = true;
|
|
}
|