mirror of
				https://github.com/NixOS/nixos-hardware.git
				synced 2025-11-04 17:27:14 +08:00 
			
		
		
		
	xps/15-7590: don't enable unfree firmware by default
Also don't set nixpkgs.pkgs. Instead just add an overlay.
This commit is contained in:
		@@ -24,7 +24,9 @@ These settings are needed both for booting the final install, and installer itse
 | 
			
		||||
=== Wifi ===
 | 
			
		||||
~~Wifi does not work with kernels older than 5.1 (firmware not present) or newer~~ (https://bbs.archlinux.org/viewtopic.php?id=247705)
 | 
			
		||||
 | 
			
		||||
Update: The 48.ucode causes the Killer wifi card to crash. The iwlfwifi-cc-a0-46.ucode works perfectly. default.nix contains an overlay that removes the offending ucode from the linux-firmware bundle.
 | 
			
		||||
Update: The 48.ucode causes the Killer wifi card to crash. The iwlfwifi-cc-a0-46.ucode works perfectly. 
 | 
			
		||||
default.nix contains an overlay that removes the offending ucode from the linux-firmware bundle.
 | 
			
		||||
To use it one also needs to enable unfree firmware in their own configuration (<code>hardware.enableRedistributableFirmware = true;</code>)
 | 
			
		||||
 | 
			
		||||
```
 | 
			
		||||
  # Use the systemd-boot EFI boot loader.
 | 
			
		||||
 
 | 
			
		||||
@@ -18,9 +18,7 @@
 | 
			
		||||
 | 
			
		||||
  # The 48.ucode causes the Killer wifi card to crash.
 | 
			
		||||
  # The iwlfwifi-cc-a0-46.ucode works perfectly
 | 
			
		||||
  nixpkgs.pkgs = import <nixpkgs> {
 | 
			
		||||
    config.allowUnfree = true;
 | 
			
		||||
    overlays = [
 | 
			
		||||
  nixpkgs.overlays = [
 | 
			
		||||
    (self: super: {
 | 
			
		||||
      firmwareLinuxNonfree = super.firmwareLinuxNonfree.overrideAttrs (old: {
 | 
			
		||||
        src = super.fetchgit{
 | 
			
		||||
@@ -35,5 +33,4 @@
 | 
			
		||||
      });
 | 
			
		||||
    })
 | 
			
		||||
  ];
 | 
			
		||||
  };
 | 
			
		||||
}
 | 
			
		||||
 
 | 
			
		||||
		Reference in New Issue
	
	Block a user