summaryrefslogtreecommitdiffstats
path: root/dell
diff options
context:
space:
mode:
authorYegor Timoshenko <yegortimoshenko@gmail.com>2017-12-24 23:21:05 +0000
committerYegor Timoshenko <yegortimoshenko@gmail.com>2017-12-24 23:21:05 +0000
commit5407ba7a5242062edeaf3dbcd42d533b9ff96023 (patch)
tree796a83420dba49ebe0b5c81a52a436856fb3b03a /dell
parentb63e0eb372b00d4cb5ca552ae9583bdb593f07dd (diff)
treewide: abstract away common configs into common/
Diffstat (limited to 'dell')
-rw-r--r--dell/xps/15-9550/default.nix8
1 files changed, 6 insertions, 2 deletions
diff --git a/dell/xps/15-9550/default.nix b/dell/xps/15-9550/default.nix
index e0bb700..90cfc6e 100644
--- a/dell/xps/15-9550/default.nix
+++ b/dell/xps/15-9550/default.nix
@@ -1,11 +1,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;
-
- services.xserver.libinput.enable = lib.mkDefault true;
}