Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: NixOS/nixos-hardware
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: 385c5ba9163b
Choose a base ref
...
head repository: NixOS/nixos-hardware
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: 2f2c2d9ef5dc
Choose a head ref
  • 2 commits
  • 1 file changed
  • 2 contributors

Commits on May 20, 2020

  1. pc/laptop: remove redundant cpuFreqGovernor setting

    This setting has been part of NixOS since version 16.09
    erikarvstedt committed May 20, 2020
    Copy the full SHA
    90868c6 View commit details
  2. Copy the full SHA
    2f2c2d9 View commit details
Showing with 0 additions and 6 deletions.
  1. +0 −6 common/pc/laptop/default.nix
6 changes: 0 additions & 6 deletions common/pc/laptop/default.nix
Original file line number Diff line number Diff line change
@@ -3,11 +3,5 @@
{
imports = [ ../. ];

# TODO: fix in NixOS/nixpkgs
# Disable governor set in hardware-configuration.nix,
# required when services.tlp.enable is true:
powerManagement.cpuFreqGovernor =
lib.mkIf config.services.tlp.enable (lib.mkForce null);

services.tlp.enable = lib.mkDefault true;
}