mirror of
https://github.com/NixOS/nixos-hardware
synced 2024-11-01 08:39:41 +01:00
21 lines
552 B
Nix
21 lines
552 B
Nix
{ lib, pkgs, ... }:
|
|
|
|
{
|
|
imports = [
|
|
../../../common/cpu/intel
|
|
../../../common/pc/laptop
|
|
../../../common/pc/laptop/ssd
|
|
];
|
|
|
|
boot.kernelParams = [ "mem_sleep_default=deep" ];
|
|
|
|
# older version break wifi:
|
|
# - https://github.com/NixOS/nixos-hardware/issues/173
|
|
boot.kernelPackages = lib.mkIf (lib.versionOlder pkgs.linux.version "5.6") pkgs.linuxPackages_latest;
|
|
|
|
# Cooling management
|
|
services.thermald.enable = lib.mkDefault true;
|
|
|
|
# Allows for updating firmware via `fwupdmgr`.
|
|
services.fwupd.enable = lib.mkDefault true;
|
|
}
|