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

16 lines
356 B
Nix
Raw Normal View History

{ lib, ... }:
2016-03-05 20:04:24 +01:00
{
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;
2016-03-05 20:04:24 +01:00
# To just use Intel integrated graphics with Intel's open source driver
2016-03-05 20:04:24 +01:00
# hardware.nvidiaOptimus.disable = true;
}