f6e2381344
Co-Authored-By: Jörg Thalheim <Mic92@users.noreply.github.com>
12 lines
243 B
Nix
12 lines
243 B
Nix
{ config, lib, pkgs, ... }:
|
|
|
|
{
|
|
imports = [
|
|
../.
|
|
../../../common/cpu/amd
|
|
];
|
|
|
|
# see https://github.com/NixOS/nixpkgs/issues/69289
|
|
boot.kernelPackages = lib.mkIf (lib.versionOlder linux.version "5.2") pkgs.linuxPackages_latest;
|
|
}
|