forked from emily/nixfiles
13 lines
248 B
Nix
13 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;
|
||
|
}
|