mirror of
https://github.com/NixOS/nixos-hardware
synced 2024-11-23 03:19:42 +01:00
fix eval with 24.05
This commit is contained in:
parent
2e78b1af80
commit
f372fa6cfa
1 changed files with 18 additions and 12 deletions
|
@ -1,4 +1,9 @@
|
||||||
{ pkgs, ... }:
|
{
|
||||||
|
pkgs,
|
||||||
|
lib,
|
||||||
|
options,
|
||||||
|
...
|
||||||
|
}:
|
||||||
|
|
||||||
let
|
let
|
||||||
# This file was obtained from the display while "DDG" mode was enabled.
|
# This file was obtained from the display while "DDG" mode was enabled.
|
||||||
|
@ -8,6 +13,7 @@ let
|
||||||
'';
|
'';
|
||||||
in
|
in
|
||||||
{
|
{
|
||||||
|
config = lib.optionalAttrs (options ? hardware.display) {
|
||||||
hardware.display = {
|
hardware.display = {
|
||||||
edid.packages = [ chip_edid ];
|
edid.packages = [ chip_edid ];
|
||||||
|
|
||||||
|
@ -18,8 +24,8 @@ in
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
||||||
# This fails at the moment, https://github.com/NixOS/nixos-hardware/issues/795
|
# This fails at the moment, https://github.com/NixOS/nixos-hardware/issues/795
|
||||||
# Extra refresh rates seem to work regardless
|
# Extra refresh rates seem to work regardless
|
||||||
# boot.initrd.extraFiles."lib/firmware/edid/16ach6h.bin".source = pkgs.runCommandLocal "chip_edid" { } "cp ${./16ach6h.bin} $out";
|
# boot.initrd.extraFiles."lib/firmware/edid/16ach6h.bin".source = pkgs.runCommandLocal "chip_edid" { } "cp ${./16ach6h.bin} $out";
|
||||||
|
};
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue