mirror of
https://github.com/NixOS/nixos-hardware
synced 2024-11-01 00:29:40 +01:00
11 lines
303 B
Nix
11 lines
303 B
Nix
{ config, lib, pkgs, ... }:
|
|
|
|
{
|
|
imports = [ ../. ];
|
|
|
|
# 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;
|
|
|
|
services.xserver.videoDrivers = [ "intel" ];
|
|
}
|