nixos-hardware/dell/xps/15-9550/default.nix

18 lines
444 B
Nix
Raw Normal View History

{ lib, ... }:
2016-03-05 14:04:24 -05:00
{
imports = [
../../../common/cpu/intel
../../../common/pc/laptop
# To just use Intel integrated graphics with Intel's open source driver
# ../../../common/gpu/nvidia-disable
];
# TODO: boot loader
boot.loader.systemd-boot.enable = lib.mkDefault true;
boot.loader.efi.canTouchEfiVariables = lib.mkDefault true;
2016-03-05 14:04:24 -05:00
2019-10-27 04:02:50 -04:00
# This will save you money and possibly your life!
services.thermald.enable = true;
2016-03-05 14:04:24 -05:00
}