Add steam and 32bit support to shepard build

This commit is contained in:
Aaron Honeycutt 2023-10-31 23:29:29 +00:00
parent e419ed6b79
commit 6cc711c3ba

View file

@ -4,4 +4,15 @@
# 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
];
}