nixfiles/config/profiles/physical.nix

17 lines
340 B
Nix
Raw Normal View History

2024-06-12 16:20:58 +02:00
{ pkgs, ... }:{
2024-06-12 16:36:08 +02:00
boot.loader = {
systemd-boot.enable = true;
efi.canTouchEfiVariables = true;
};
2024-06-12 16:20:58 +02:00
environment.systemPackages = with pkgs; [
pciutils
usbutils
];
hardware.cpu.intel.updateMicrocode = true;
hardware.enableAllFirmware = true;
kyouma.machine-type.physical = true;
services.fwupd.enable = true;
}