summary refs log tree commit diff
path: root/nixos/modules/installer
diff options
context:
space:
mode:
authorEelco Dolstra <eelco.dolstra@logicblox.com>2014-05-08 20:20:12 +0200
committerEelco Dolstra <eelco.dolstra@logicblox.com>2014-05-09 00:51:48 +0200
commit1bd8ced9c0eb4002ffa2afb3e4a60c5bccfc28ef (patch)
tree6e83e6b814c390834c92e989bd589c0934dc0c8d /nixos/modules/installer
parent08834b061ccc96659e5201c87db8dcfb1714f445 (diff)
downloadnixlib-1bd8ced9c0eb4002ffa2afb3e4a60c5bccfc28ef.tar
nixlib-1bd8ced9c0eb4002ffa2afb3e4a60c5bccfc28ef.tar.gz
nixlib-1bd8ced9c0eb4002ffa2afb3e4a60c5bccfc28ef.tar.bz2
nixlib-1bd8ced9c0eb4002ffa2afb3e4a60c5bccfc28ef.tar.lz
nixlib-1bd8ced9c0eb4002ffa2afb3e4a60c5bccfc28ef.tar.xz
nixlib-1bd8ced9c0eb4002ffa2afb3e4a60c5bccfc28ef.tar.zst
nixlib-1bd8ced9c0eb4002ffa2afb3e4a60c5bccfc28ef.zip
Don't enable the NVIDIA driver by default because it's unfree
Diffstat (limited to 'nixos/modules/installer')
-rw-r--r--nixos/modules/installer/tools/nixos-generate-config.pl2
1 files changed, 1 insertions, 1 deletions
diff --git a/nixos/modules/installer/tools/nixos-generate-config.pl b/nixos/modules/installer/tools/nixos-generate-config.pl
index 804de8b25d85..23f9c3a4ca06 100644
--- a/nixos/modules/installer/tools/nixos-generate-config.pl
+++ b/nixos/modules/installer/tools/nixos-generate-config.pl
@@ -159,7 +159,7 @@ sub pciCheck {
     # Assume that all NVIDIA cards are supported by the NVIDIA driver.
     # There may be exceptions (e.g. old cards).
     # FIXME: do we want to enable an unfree driver here?
-    $videoDriver = "nvidia" if $vendor eq "0x10de" && $class =~ /^0x03/;
+    #$videoDriver = "nvidia" if $vendor eq "0x10de" && $class =~ /^0x03/;
 }
 
 foreach my $path (glob "/sys/bus/pci/devices/*") {