1
0
mirror of https://github.com/NixOS/nixos-hardware synced 2024-06-28 15:38:32 +02:00
nixos-hardware/lenovo/thinkpad/t460s/default.nix

12 lines
303 B
Nix
Raw Normal View History

{ config, lib, pkgs, ... }:
2016-07-09 11:36:19 +02:00
{
imports = [ ../. ];
2016-07-09 11:36:19 +02:00
# Use the gummiboot efi boot loader. (From default generated configuration.nix)
boot.loader.systemd-boot.enable = lib.mkDefault true;
boot.loader.efi.canTouchEfiVariables = lib.mkDefault true;
2016-07-09 11:36:19 +02:00
services.xserver.videoDrivers = [ "intel" ];
2016-07-09 11:36:19 +02:00
}