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: 1ea7efa26286
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: c0182a06982f
Choose a head ref
  • 2 commits
  • 4 files changed
  • 2 contributors

Commits on Oct 27, 2019

  1. Copy the full SHA
    4916acd View commit details
  2. Merge pull request #127 from NixOS/dell-thermald

    dell/xps: enable thermald service
    domenkozar authored Oct 27, 2019
    Copy the full SHA
    c0182a0 View commit details
Showing with 13 additions and 1 deletion.
  1. +4 −1 dell/xps/13-9360/default.nix
  2. +3 −0 dell/xps/13-9370/default.nix
  3. +3 −0 dell/xps/13-9380/default.nix
  4. +3 −0 dell/xps/15-9550/default.nix
5 changes: 4 additions & 1 deletion dell/xps/13-9360/default.nix
Original file line number Diff line number Diff line change
@@ -13,7 +13,7 @@
efi.canTouchEfiVariables = lib.mkDefault true;
systemd-boot.enable = lib.mkDefault true;
};

hardware.firmware = lib.mkBefore [ pkgs.qca6174-firmware ];

# TODO: move to general HiDPI profile
@@ -23,4 +23,7 @@
nixpkgs.overlays = [(final: previous: {
qca6174-firmware = final.callPackage ./qca6174-firmware.nix {};
})];

# This will save you money and possibly your life!
services.thermald.enable = true;
}
3 changes: 3 additions & 0 deletions dell/xps/13-9370/default.nix
Original file line number Diff line number Diff line change
@@ -14,4 +14,7 @@
boot.blacklistedKernelModules = [ "psmouse" ];

services.throttled.enable = lib.mkDefault true;

# This will save you money and possibly your life!
services.thermald.enable = true;
}
3 changes: 3 additions & 0 deletions dell/xps/13-9380/default.nix
Original file line number Diff line number Diff line change
@@ -12,4 +12,7 @@

# touchpad goes over i2c
boot.blacklistedKernelModules = [ "psmouse" ];

# This will save you money and possibly your life!
services.thermald.enable = true;
}
3 changes: 3 additions & 0 deletions dell/xps/15-9550/default.nix
Original file line number Diff line number Diff line change
@@ -10,6 +10,9 @@
boot.loader.systemd-boot.enable = lib.mkDefault true;
boot.loader.efi.canTouchEfiVariables = lib.mkDefault true;

# This will save you money and possibly your life!
services.thermald.enable = true;

# To just use Intel integrated graphics with Intel's open source driver
# hardware.nvidiaOptimus.disable = true;
}