nixos-config/modules/core/hardware.nix
Frost-Phoenix 27247998b6 update
2024-06-23 16:33:59 +02:00

13 lines
184 B
Nix

{ pkgs, ... }:
{
hardware = {
graphics = {
enable = true;
extraPackages = with pkgs; [
];
};
};
hardware.enableRedistributableFirmware = true;
}