You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

12 lines
248 B

  1. { config, lib, pkgs, ... }:
  2. {
  3. imports = [
  4. ../.
  5. ../../../common/cpu/amd
  6. ];
  7. # see https://github.com/NixOS/nixpkgs/issues/69289
  8. boot.kernelPackages = lib.mkIf (lib.versionOlder pkgs.linux.version "5.2") pkgs.linuxPackages_latest;
  9. }