1
0
mirror of https://github.com/NixOS/nixos-hardware synced 2024-06-01 18:43:34 +02:00
nixos-hardware/dell/xps/13-9360/default.nix
2020-07-26 12:59:49 +02:00

31 lines
936 B
Nix

{ lib, pkgs, ... }:
{
# 4K screen, use bigger console font
# i18n.consoleFont deprecated and obsolete in >=20.03
# hardware-configuration.nix generates console.font
i18n.consoleFont = lib.mkIf (lib.versionOlder (lib.versions.majorMinor lib.version) "20.03") (lib.mkDefault "latarcyrheb-sun32");
imports = [
../../../common/cpu/intel/kaby-lake
../../../common/pc/laptop
];
boot.blacklistedKernelModules = [ "psmouse" ]; # touchpad goes over i2c
# TODO: decide on boot loader policy
boot.loader = {
efi.canTouchEfiVariables = lib.mkDefault true;
systemd-boot.enable = lib.mkDefault true;
};
hardware.firmware = lib.mkBefore [ pkgs.qca6174-firmware ];
# TODO: upstream to NixOS/nixpkgs
nixpkgs.overlays = [(final: previous: {
qca6174-firmware = final.callPackage ./qca6174-firmware.nix {};
})];
# This will save you money and possibly your life!
services.thermald.enable = true;
}