mirror of
https://github.com/NixOS/nixos-hardware.git
synced 2025-11-06 09:58:47 +08:00
malibal/aon/s1: Add initial intel-only support.
This commit is contained in:
committed by
mergify[bot]
parent
04a1cda0c1
commit
aac7c50858
33
malibal/aon/s1/default.nix
Normal file
33
malibal/aon/s1/default.nix
Normal 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;
|
||||
};
|
||||
};
|
||||
}
|
||||
Reference in New Issue
Block a user