nixos/modules/common-x86/default.nix

17 lines
338 B
Nix
Raw Normal View History

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