1
0
Fork 0
mirror of https://github.com/NixOS/nixos-hardware synced 2024-11-22 19:09:42 +01:00

common/cpu/intel: add architecture-specific modules

This commit is contained in:
Gavin John 2024-10-18 14:29:59 -07:00 committed by mergify[bot]
parent 9fcf30fccf
commit c058019ce1
20 changed files with 110 additions and 0 deletions

View file

@ -0,0 +1,5 @@
{
imports = [
../cpu-only.nix
];
}

View file

@ -0,0 +1,6 @@
{
imports = [
./cpu-only.nix
../../../gpu/intel/bay-trail
];
}

View file

@ -0,0 +1,5 @@
{
imports = [
../cpu-only.nix
];
}

View file

@ -0,0 +1,6 @@
{
imports = [
../cpu-only.nix
../../../gpu/intel/braswell
];
}

View file

@ -0,0 +1,5 @@
{
imports = [
../cpu-only.nix
];
}

View file

@ -0,0 +1,6 @@
{
imports = [
../cpu-only.nix
../../../gpu/intel/broadwell
];
}

View file

@ -0,0 +1,5 @@
{
imports = [
../cpu-only.nix
];
}

View file

@ -0,0 +1,6 @@
{
imports = [
../cpu-only.nix
../../../gpu/intel/comet-lake
];
}

View file

@ -0,0 +1,5 @@
{
imports = [
../cpu-only.nix
];
}

View file

@ -0,0 +1,6 @@
{
imports = [
../cpu-only.nix
../../../gpu/intel/elkhart-lake
];
}

View file

@ -0,0 +1,5 @@
{
imports = [
../cpu-only.nix
];
}

View file

@ -0,0 +1,6 @@
{
imports = [
../cpu-only.nix
../../../gpu/intel/haswell
];
}

View file

@ -0,0 +1,5 @@
{
imports = [
../cpu-only.nix
];
}

View file

@ -0,0 +1,6 @@
{
imports = [
../cpu-only.nix
../../../gpu/intel/jasper-lake
];
}

View file

@ -0,0 +1,5 @@
{
imports = [
../cpu-only.nix
];
}

View file

@ -0,0 +1,6 @@
{
imports = [
../cpu-only.nix
../../../gpu/intel/kaby-lake
];
}

View file

@ -0,0 +1,5 @@
{
imports = [
../cpu-only.nix
];
}

View file

@ -0,0 +1,6 @@
{
imports = [
../cpu-only.nix
../../../gpu/intel/sandy-bridge
];
}

View file

@ -0,0 +1,5 @@
{
imports = [
../cpu-only.nix
];
}

View file

@ -0,0 +1,6 @@
{
imports = [
../cpu-only.nix
../../../gpu/intel/tiger-lake
];
}