malibal/aon/s1: Add initial intel-only support.

This commit is contained in:
Dietrich Daroch
2024-08-21 14:00:38 -07:00
committed by mergify[bot]
parent 04a1cda0c1
commit aac7c50858
3 changed files with 113 additions and 0 deletions

View File

@@ -0,0 +1,33 @@
{ pkgs, lib, ... }:
{
imports = [
../../../common/pc/laptop
../../../common/pc/laptop/ssd
../../../common/cpu/intel
../../../common/gpu/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;
};
};
}