dots/hosts/twinkpad/conf.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 ];
}