nixos/modules/common-x86/default.nix

17 lines
270 B
Nix
Raw Normal View History

2022-03-16 15:22:13 +01:00
{ inputs, ... }:
2022-03-15 17:51:12 +01:00
{
imports = [
2022-03-16 15:22:13 +01:00
"${inputs.self}/modules/common"
2022-03-15 17:51:12 +01:00
];
# Use the systemd-boot EFI boot loader.
boot.loader = {
systemd-boot.enable = true;
efi.canTouchEfiVariables = true;
};
hardware = {
cpu.intel.updateMicrocode = true;
};
}