nixos/modules/common-x86/default.nix

17 lines
310 B
Nix

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