nixos/modules/common-x86/default.nix

17 lines
318 B
Nix
Raw Normal View History

2022-11-04 12:12:37 +01:00
{ custom, inputs }: { ... }:
2022-03-15 17:51:12 +01:00
{
imports = [
2022-11-04 12:12:37 +01:00
(import "${inputs.self}/modules/common" { inherit custom inputs; })
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;
};
}