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/nixpkgs
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: 112eea6b906f
Choose a base ref
...
head repository: NixOS/nixpkgs
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: a69d3f33d458
Choose a head ref
  • 2 commits
  • 1 file changed
  • 2 contributors

Commits on Jan 9, 2020

  1. nixos/powertop: wait for hardware to initialize

    We should wait until after `multi-user.target` is triggered to allow
    hardware to finish initializing, such as network devices and USB drives.
    This ensures `powertop --auto-tune` sets more tunables to "Good".
    
    Fixes #66820
    meatcar committed Jan 9, 2020

    Verified

    This commit was signed with the committer’s verified signature.
    AluisioASG Aluísio Augusto Silva Gonçalves
    Copy the full SHA
    90b6823 View commit details

Commits on Jan 10, 2020

  1. nixos/powertop: wait for hardware to initialize (#77364)

    nixos/powertop: wait for hardware to initialize
    Mic92 authored Jan 10, 2020

    Verified

    This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
    Copy the full SHA
    a69d3f3 View commit details
Showing with 1 addition and 0 deletions.
  1. +1 −0 nixos/modules/tasks/powertop.nix
1 change: 1 addition & 0 deletions nixos/modules/tasks/powertop.nix
Original file line number Diff line number Diff line change
@@ -15,6 +15,7 @@ in {
systemd.services = {
powertop = {
wantedBy = [ "multi-user.target" ];
after = [ "multi-user.target" ];
description = "Powertop tunings";
path = [ pkgs.kmod ];
serviceConfig = {