mirror of
https://github.com/NixOS/nixos-hardware.git
synced 2025-11-08 11:36:10 +01:00
11 lines
197 B
Nix
11 lines
197 B
Nix
{ config, lib, pkgs, ... }:
|
|
|
|
{
|
|
imports = [
|
|
../.
|
|
../../../common/cpu/intel
|
|
];
|
|
|
|
# see https://github.com/NixOS/nixpkgs/issues/69289
|
|
boot.kernelPackages = pkgs.linuxPackages_latest;
|
|
}
|