Skip to content

Commit 9c0ee5d

Browse files
authored
Merge pull request #1651 from rti/framework-13-intel-core-enableRedistributableFirmware
fix: enableRedistributableFirmware on Framework 13 Intel Core Ultra Series1
2 parents d6645c3 + b279950 commit 9c0ee5d

File tree

1 file changed

+3
-4
lines changed

1 file changed

+3
-4
lines changed

framework/13-inch/intel-core-ultra-series1/default.nix

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,9 @@
2020
lib.mkDefault pkgs.linuxPackages_latest
2121
);
2222

23+
# NPU, GPU
24+
hardware.enableRedistributableFirmware = lib.mkDefault true;
25+
2326
# Intel NPU Driver
2427
# https://discourse.nixos.org/t/new-installation-on-asus-zenbook-ux5406-intel-vpu-firmware-error-2/58732/2
2528
hardware.firmware = lib.optionals (config.hardware.enableRedistributableFirmware) [
@@ -40,10 +43,6 @@
4043
)
4144
];
4245

43-
warnings = lib.mkIf (!config.hardware.enableRedistributableFirmware) [
44-
''For Intel NPU support, set the option: hardware.enableRedistributableFirmware = true;''
45-
];
46-
4746
hardware.framework.laptop13.audioEnhancement.rawDeviceName =
4847
lib.mkDefault "alsa_output.pci-0000_00_1f.3.analog-stereo";
4948
}

0 commit comments

Comments
 (0)