2018-05-15 09:46:41 -04:00
|
|
|
{ lib, pkgs, ... }:
|
2018-05-15 12:54:18 -04:00
|
|
|
|
2020-05-14 15:33:15 -04:00
|
|
|
# TODO: move to general HiDPI profile
|
|
|
|
# 4K screen, use bigger console font
|
|
|
|
# i18n.consoleFont deprecated in >=20.03, choose option based on OS version
|
|
|
|
lib.recursiveUpdate
|
|
|
|
(if lib.versionAtLeast (lib.versions.majorMinor lib.version) "20.03" then {
|
|
|
|
console.font = lib.mkDefault "latarcyrheb-sun32";
|
|
|
|
} else {
|
|
|
|
i18n.consoleFont = lib.mkDefault "latarcyrheb-sun32";
|
|
|
|
}) {
|
2018-05-15 09:46:41 -04:00
|
|
|
imports = [
|
2018-05-15 12:54:18 -04:00
|
|
|
../../../common/cpu/intel/kaby-lake
|
2018-05-15 09:46:41 -04:00
|
|
|
../../../common/pc/laptop
|
|
|
|
];
|
|
|
|
|
2018-05-15 12:54:18 -04:00
|
|
|
boot.blacklistedKernelModules = [ "psmouse" ]; # touchpad goes over i2c
|
2018-05-15 09:46:41 -04:00
|
|
|
|
2018-05-15 12:54:18 -04:00
|
|
|
# TODO: decide on boot loader policy
|
|
|
|
boot.loader = {
|
|
|
|
efi.canTouchEfiVariables = lib.mkDefault true;
|
|
|
|
systemd-boot.enable = lib.mkDefault true;
|
2018-05-15 09:46:41 -04:00
|
|
|
};
|
2019-10-27 04:02:50 -04:00
|
|
|
|
2018-05-15 12:54:18 -04:00
|
|
|
hardware.firmware = lib.mkBefore [ pkgs.qca6174-firmware ];
|
2018-05-15 09:46:41 -04:00
|
|
|
|
2018-05-15 12:54:18 -04:00
|
|
|
# TODO: upstream to NixOS/nixpkgs
|
|
|
|
nixpkgs.overlays = [(final: previous: {
|
|
|
|
qca6174-firmware = final.callPackage ./qca6174-firmware.nix {};
|
|
|
|
})];
|
2019-10-27 04:02:50 -04:00
|
|
|
|
|
|
|
# This will save you money and possibly your life!
|
|
|
|
services.thermald.enable = true;
|
2018-05-15 09:46:41 -04:00
|
|
|
}
|