mirror of
https://github.com/NixOS/nixos-hardware
synced 2024-11-05 02:29:40 +01:00
f5a4954ca3
fixes #145
11 lines
248 B
Nix
11 lines
248 B
Nix
{ config, lib, pkgs, ... }:
|
|
|
|
{
|
|
imports = [
|
|
../.
|
|
../../../common/cpu/amd
|
|
];
|
|
|
|
# see https://github.com/NixOS/nixpkgs/issues/69289
|
|
boot.kernelPackages = lib.mkIf (lib.versionOlder pkgs.linux.version "5.2") pkgs.linuxPackages_latest;
|
|
}
|