add: hosts folder

This commit is contained in:
Aaron Honeycutt 2024-01-31 08:00:36 -07:00
parent 641e11f49f
commit 172d68ebde
31 changed files with 2008 additions and 0 deletions

View file

@ -0,0 +1,18 @@
{ config, pkgs, ... }:
{
# Name your host machine
networking.hostName = "shepard";
## Enable 32 Bit libraries for applications like Steam
hardware.opengl.driSupport32Bit = true;
# Allow Unfree
nixpkgs.config.allowUnfree = true;
environment.systemPackages =
with pkgs;
[
steam
];
}