forked from mirrors/nixpkgs
* Prevent merging of some options. P.S. maybe string options
should be "uniq" by default. svn path=/nixos/trunk/; revision=31520
This commit is contained in:
parent
7be82b3f59
commit
cc41bce79d
|
@ -91,8 +91,9 @@ in
|
|||
"p4_clockmod"
|
||||
];
|
||||
|
||||
powerManagement.cpuFreqGovernor = "ondemand";
|
||||
powerManagement.scsiLinkPolicy = "min_power";
|
||||
powerManagement.cpuFreqGovernor = mkDefault "ondemand";
|
||||
powerManagement.scsiLinkPolicy = mkDefault "min_power";
|
||||
|
||||
};
|
||||
|
||||
}
|
||||
|
|
|
@ -10,6 +10,7 @@ with pkgs.lib;
|
|||
powerManagement.cpuFreqGovernor = mkOption {
|
||||
default = "";
|
||||
example = "ondemand";
|
||||
type = types.uniq types.string;
|
||||
description = ''
|
||||
Configure the governor used to regulate the frequence of the
|
||||
available CPUs. By default, the kernel configures the governor
|
||||
|
|
|
@ -10,6 +10,7 @@ with pkgs.lib;
|
|||
powerManagement.scsiLinkPolicy = mkOption {
|
||||
default = "";
|
||||
example = "min_power";
|
||||
type = types.uniq types.string;
|
||||
description = ''
|
||||
Configure the scsi link power management policy. By default,
|
||||
the kernel configures "max_performance".
|
||||
|
|
Loading…
Reference in a new issue