9 lines
222 B
Nix
9 lines
222 B
Nix
{ config, lib, pkgs, ... }:
|
|
|
|
{
|
|
imports = [ ./hardware-configuration.nix ];
|
|
networking.hostName = "twinkpad";
|
|
|
|
hardware.graphics.enable = true;
|
|
hardware.graphics.extraPackages = with pkgs; [ intel-media-driver ];
|
|
}
|