* nixos-hardware-scan: don't emit an include of an "install profile".

That's confusing and wrong: nixos-hardware-scan should just enable
  support for the detected hardware, not enable lots of software (let
  alone KDE).

svn path=/nixos/trunk/; revision=30325
This commit is contained in:
Eelco Dolstra 2011-11-08 15:39:13 +00:00
parent 3e30d87c26
commit a76fe106e7
2 changed files with 0 additions and 10 deletions

View File

@ -230,7 +230,6 @@ print <<EOF ;
{
require = [
"\${modulesPath}/profiles/@profile@.nix"
"\${modulesPath}/installer/scan/not-detected.nix"
];

View File

@ -49,7 +49,6 @@ let
name = "nixos-hardware-scan";
src = ./nixos-hardware-scan.pl;
inherit (pkgs) perl;
profile = cfg.installProfile;
};
nixosOption = makeProg {
@ -103,14 +102,6 @@ in
'';
};
installer.installProfile = pkgs.lib.mkOption {
default = "base";
example = "graphical";
description = ''
Name of the profile used when generating the hardware-scan.
'';
};
installer.enableGraphicalTools = pkgs.lib.mkOption {
default = false;
type = with pkgs.lib.types; bool;