1
0
Fork 0
mirror of https://github.com/NixOS/nixos-hardware synced 2025-02-17 05:25:04 +01:00

common/gpu/intel: reformat

This commit is contained in:
Gavin John 2024-10-18 12:38:51 -07:00 committed by mergify[bot]
parent 3827903417
commit 0ccdd27056
5 changed files with 54 additions and 58 deletions

View file

@ -1,7 +1,5 @@
{
imports = [ ../. ];
boot.kernelParams = [
"i915.enable_guc=2"
];
boot.kernelParams = [ "i915.enable_guc=2" ];
}

View file

@ -6,7 +6,9 @@
}:
{
imports = [ ../24.05-compat.nix ];
options.hardware.intelgpu.driver = lib.mkOption {
options.hardware.intelgpu = {
driver = lib.mkOption {
description = "Intel GPU driver to use";
type = lib.types.enum [
"i915"
@ -15,16 +17,19 @@
default = "i915";
};
options.hardware.intelgpu.loadInInitrd =
loadInInitrd =
lib.mkEnableOption "Load the Intel GPU kernel module at stage 1 boot. (Added to `boot.initrd.kernelModules`)"
// {
default = true;
};
};
config = {
boot.initrd.kernelModules = lib.optionals config.hardware.intelgpu.loadInInitrd [
config.hardware.intelgpu.driver
];
config =
let
cfg = config.hardware.intelgpu;
in
{
boot.initrd.kernelModules = lib.optionals cfg.loadInInitrd [ cfg.driver ];
hardware.graphics.extraPackages = with pkgs; [
(
@ -49,8 +54,7 @@
assertions = [
{
assertion = (
config.hardware.intelgpu.driver != "xe"
|| lib.versionAtLeast config.boot.kernelPackages.kernel.version "6.8"
cfg.driver != "xe" || lib.versionAtLeast config.boot.kernelPackages.kernel.version "6.8"
);
message = "Intel Xe GPU driver is not supported on kernels earlier than 6.8. Update or use the i915 driver.";
}

View file

@ -1,7 +1,5 @@
{
imports = [ ../. ];
boot.kernelParams = [
"i915.enable_guc=2"
];
boot.kernelParams = [ "i915.enable_guc=2" ];
}

View file

@ -1,7 +1,5 @@
{
imports = [ ../. ];
boot.kernelParams = [
"i915.enable_guc=2"
];
boot.kernelParams = [ "i915.enable_guc=2" ];
}

View file

@ -3,7 +3,5 @@
# Enables RC6, RC6p and RC6pp.
# Last two are only available on Sandy Bridge CPUs (circa 2011).
boot.kernelParams = [
"i915.enable_rc6=7"
];
boot.kernelParams = [ "i915.enable_rc6=7" ];
}