summaryrefslogtreecommitdiffstats
path: root/dell/xps/15-9550/default.nix
blob: 90cfc6e2936ab809287b97ed360634af7fc424e9 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
{ 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;

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