mirror of
https://github.com/NixOS/nixos-hardware.git
synced 2025-11-03 16:57:14 +08:00
21 lines
381 B
Nix
21 lines
381 B
Nix
{
|
|
config,
|
|
lib,
|
|
pkgs,
|
|
...
|
|
}:
|
|
{
|
|
imports = [
|
|
../../../common/cpu/amd
|
|
../../../common/cpu/amd/pstate.nix
|
|
../../../common/gpu/amd
|
|
../../../common/pc/ssd
|
|
../../framework-tool.nix
|
|
];
|
|
|
|
# 6.14 and above have good GPU support
|
|
boot.kernelPackages = lib.mkIf (lib.versionOlder pkgs.linux.version "6.14") (
|
|
lib.mkDefault pkgs.linuxPackages_latest
|
|
);
|
|
}
|