nixos/modules/common-x86/default.nix

19 lines
371 B
Nix
Raw Normal View History

2022-11-04 19:35:57 +01:00
{ custom }: { ... }:
2022-03-15 17:51:12 +01:00
{
imports = [
2022-11-04 19:35:57 +01:00
(import "${custom.inputs.self}/modules/common" { inherit custom; })
2022-03-15 17:51:12 +01:00
];
# Enable boot splash screen
boot.plymouth.enable = true;
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;
};
}