dots/hosts/pluto/conf.nix

10 lines
227 B
Nix

{ config, lib, pkgs, ... }:
{
networking.hostName = "pluto";
hardware.graphics.enable = true;
hardware.graphics.extraPackages = with pkgs; [ intel-media-driver ];
services.logind.lidSwitchExternalPower = "ignore";
}