mirror of
https://github.com/NixOS/nixos-hardware
synced 2024-11-18 08:59:41 +01:00
11 lines
170 B
Nix
11 lines
170 B
Nix
|
{ lib, pkgs, ... }:
|
||
|
|
||
|
{
|
||
|
imports = [
|
||
|
./xps-common.nix
|
||
|
];
|
||
|
|
||
|
# This configuration makes intel default
|
||
|
services.xserver.videoDrivers = lib.mkDefault [ "intel" ];
|
||
|
}
|