1
0
Fork 0
mirror of https://github.com/NixOS/nixos-hardware synced 2024-09-19 21:07:23 +02:00
nixos-hardware/malibal/aon/s1/default.nix
2024-09-09 09:49:19 +00:00

33 lines
506 B
Nix

{ 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;
};
};
}