mirror of
https://github.com/NixOS/nixos-hardware
synced 2024-11-01 16:49:40 +01:00
24 lines
675 B
Nix
24 lines
675 B
Nix
{
|
|
lib,
|
|
pkgs,
|
|
config,
|
|
...
|
|
}: {
|
|
imports = [
|
|
../../../../common/cpu/amd
|
|
../../../../common/cpu/amd/pstate.nix
|
|
../../../../common/cpu/amd/raphael/igpu.nix
|
|
../../../../common/pc/laptop
|
|
../../../../common/pc/laptop/ssd
|
|
];
|
|
|
|
# Fixing a power-issue with older kernels.
|
|
# When powered off, the battery does not turn off completely.
|
|
# Kernel 6.6.35 apparently does not have this issue,
|
|
# the exact version is still unknown which fixed this.
|
|
boot.kernelPackages = lib.mkIf (lib.versionOlder pkgs.linux.version "6.6.35") (
|
|
if (config.boot.zfs.enabled)
|
|
then pkgs.zfs.latestCompatibleLinuxPackages
|
|
else pkgs.linuxPackages_latest
|
|
);
|
|
}
|