mirror of
https://github.com/NixOS/nixos-hardware
synced 2024-11-18 00:49:41 +01:00
16 lines
332 B
Nix
16 lines
332 B
Nix
{ lib, pkgs, ... }:
|
|
|
|
{
|
|
imports = [ ../. ];
|
|
|
|
boot.loader.systemd-boot.enable = true;
|
|
boot.loader.efi.canTouchEfiVariables = true;
|
|
|
|
hardware.opengl.driSupport32Bit = true;
|
|
|
|
services.xserver = {
|
|
libinput.enable = lib.mkDefault true;
|
|
# TODO: we should not enable unfree drivers
|
|
videoDrivers = [ "nvidia" ];
|
|
};
|
|
}
|