mirror of
https://github.com/NixOS/nixos-hardware.git
synced 2025-11-03 08:47:13 +08:00
15 lines
232 B
Nix
15 lines
232 B
Nix
{ config, ... }:
|
|
{
|
|
imports = [
|
|
../../common/cpu/amd
|
|
../../common/pc/ssd
|
|
../../common/pc
|
|
];
|
|
|
|
boot.extraModulePackages = with config.boot.kernelPackages; [
|
|
nct6687d
|
|
];
|
|
|
|
boot.kernelModules = [ "nct6687d" ];
|
|
}
|