2019-07-18 15:19:31 -04:00
|
|
|
{ lib, ... }:
|
|
|
|
|
|
|
|
{
|
|
|
|
imports = [
|
|
|
|
../../../common/cpu/intel
|
|
|
|
../../../common/pc/laptop
|
2019-08-17 02:08:08 -04:00
|
|
|
../../../common/pc/ssd
|
2019-07-18 15:19:31 -04:00
|
|
|
];
|
|
|
|
|
2020-02-01 20:43:01 -05:00
|
|
|
# Set to true for just the first run, then disable it.
|
|
|
|
# boot.loader.efi.canTouchEfiVariables = lib.mkDefault true;
|
2019-07-18 15:19:31 -04:00
|
|
|
|
2020-02-01 21:11:31 -05:00
|
|
|
# Earlier font-size setup
|
|
|
|
console.earlySetup = true;
|
|
|
|
|
|
|
|
# Prevent small EFI partiion from filling up
|
|
|
|
boot.loader.grub.configurationLimit = 10;
|
|
|
|
|
2019-07-21 21:49:13 -04:00
|
|
|
# The 48.ucode causes the Killer wifi card to crash.
|
|
|
|
# The iwlfwifi-cc-a0-46.ucode works perfectly
|
2020-02-09 03:40:38 -05:00
|
|
|
nixpkgs.overlays = [
|
|
|
|
(self: super: {
|
|
|
|
firmwareLinuxNonfree = super.firmwareLinuxNonfree.overrideAttrs (old: {
|
|
|
|
src = super.fetchgit{
|
|
|
|
url = "https://git.kernel.org/pub/scm/linux/kernel/git/firmware/linux-firmware.git";
|
|
|
|
rev = "bf13a71b18af229b4c900b321ef1f8443028ded8";
|
|
|
|
sha256 = "1dcaqdqyffxiadx420pg20157wqidz0c0ca5mrgyfxgrbh6a4mdj";
|
|
|
|
};
|
|
|
|
postInstall = ''
|
|
|
|
rm $out/lib/firmware/iwlwifi-cc-a0-48.ucode
|
|
|
|
'';
|
|
|
|
outputHash = "0dq48i1cr8f0qx3nyq50l9w9915vhgpwmwiw3b4yhisbc3afyay4";
|
|
|
|
});
|
|
|
|
})
|
|
|
|
];
|
2019-07-18 15:19:31 -04:00
|
|
|
}
|