mirror of
https://github.com/NixOS/nixos-hardware
synced 2024-11-01 08:39:41 +01:00
32 lines
476 B
Nix
32 lines
476 B
Nix
{ pkgs, lib, ... }:
|
|
|
|
{
|
|
imports = [
|
|
../../../common/pc/laptop
|
|
../../../common/pc/laptop/ssd
|
|
|
|
../../../common/cpu/intel
|
|
|
|
../../../common/gpu/nvidia/disable.nix
|
|
];
|
|
|
|
boot = {
|
|
kernelParams = [
|
|
"mem_sleep_default=deep"
|
|
"i915.fastboot=1"
|
|
];
|
|
kernelModules = [
|
|
"coretemp"
|
|
];
|
|
};
|
|
|
|
powerManagement = {
|
|
powertop.enable = lib.mkDefault true;
|
|
};
|
|
|
|
services = {
|
|
fwupd = {
|
|
enable = lib.mkDefault true;
|
|
};
|
|
};
|
|
}
|