summaryrefslogtreecommitdiffstats
path: root/dell/xps/15-9550/default.nix
blob: 9677972a6b70cb120b60b8814fdab9b7a026e79f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
{ lib, ... }:

{
  imports = [
    ../../../common/cpu/intel
    ../../../common/pc/laptop
  ];

  # TODO: boot loader
  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;
}