mirror of
https://github.com/NixOS/nixos-hardware
synced 2024-11-01 00:29:40 +01:00
11 lines
177 B
Nix
11 lines
177 B
Nix
{ lib, ... }:
|
|
|
|
{
|
|
imports = [
|
|
../.
|
|
../../../common/cpu/intel
|
|
];
|
|
|
|
# https://github.com/NixOS/nixpkgs/issues/18356
|
|
boot.blacklistedKernelModules = [ "nouveau" ];
|
|
}
|