nix: add host 'pluto'

This commit is contained in:
Nico 2025-05-03 16:15:57 +10:00
parent 44829a3c62
commit 251f2e92df
2 changed files with 52 additions and 0 deletions

8
nix/hosts/pluto/conf.nix Normal file
View file

@ -0,0 +1,8 @@
{ config, lib, pkgs, ... }:
{
networking.hostName = "pluto";
hardware.graphics.enable = true;
hardware.graphics.extraPackages = with pkgs; [ intel-media-driver ];
}