forked from emily/nixfiles
12 lines
248 B
Nix
12 lines
248 B
Nix
{ pkgs, ... }:{
|
|
environment.systemPackages = with pkgs; [
|
|
pciutils
|
|
usbutils
|
|
];
|
|
hardware.cpu.intel.updateMicrocode = true;
|
|
hardware.enableAllFirmware = true;
|
|
|
|
kyouma.machine-type.physical = true;
|
|
|
|
services.fwupd.enable = true;
|
|
}
|