summary refs log tree commit diff
path: root/nixos/modules/config/power-management.nix
Commit message (Collapse)AuthorAge
* Remove default scsiLinkPolicyaaron levin2015-12-17
|
* link_power_policy_management default to max_performanceaaron levin2015-12-16
| | | | | | | | | | | | | | | The kernel default for `link_power_management_policy` is `"max_performance"`. This commit: https://github.com/NixOS/nixpkgs/commit/f169f60575bec7c61626af180cae364d321b4bec set the NixOS default to `"min_performance"`. This issue (https://github.com/NixOS/nixpkgs/issues/11276) details my long journey to discover this after several file system failures incorrectly attributed to `TRIM` and `NCQ` settings. I think we should use the kernel default of `"max_performance"` to assure the best experience for new users with SSDs and to conform to the defaults of the kernel and other distros.
* power management: restart post-resume.target on resumeThomas Strobel2015-10-06
| | | | | | Trigger a restart of the post-resume.target on resume. That allows other systemd services to receive the restart signal after resume by becoming 'partOf' the post-resume.target.
* nixos/manual: Use literalExample when feasible.aszlig2014-08-27
| | | | | | | | | Should bring most of the examples into a better consistency regarding syntactic representation in the manual. Thanks to @devhell for reporting. Signed-off-by: aszlig <aszlig@redmoonstudios.org>
* cpu-freq: Use cpupower instead of cpufrequtilsWilliam A. Kennington III2014-04-16
| | | | | | Additionally, put the powersave utility in charge of loading the cpufrequency modules based on the governor specified in the configuration.
* Rewrite ‘with pkgs.lib’ -> ‘with lib’Eelco Dolstra2014-04-14
| | | | | | | | Using pkgs.lib on the spine of module evaluation is problematic because the pkgs argument depends on the result of module evaluation. To prevent an infinite recursion, pkgs and some of the modules are evaluated twice, which is inefficient. Using ‘with lib’ prevents this problem.
* power-management: Don't enable acpid.ambrop7@gmail.com2014-03-15
| | | | Running acpid along with systemd will cause double handling of acpi events.
* Add lots of missing option typesEelco Dolstra2013-10-30
|
* Move all of NixOS to nixos/ in preparation of the repository mergeEelco Dolstra2013-10-10