nixos/modules/common-x86/default.nix

17 lines
270 B
Nix

{ inputs, ... }:
{
imports = [
"${inputs.self}/modules/common"
];
# Use the systemd-boot EFI boot loader.
boot.loader = {
systemd-boot.enable = true;
efi.canTouchEfiVariables = true;
};
hardware = {
cpu.intel.updateMicrocode = true;
};
}