From 6cc711c3ba75e497625f807f954aa3870096deb9 Mon Sep 17 00:00:00 2001 From: Aaron Honeycutt Date: Tue, 31 Oct 2023 23:29:29 +0000 Subject: [PATCH] Add steam and 32bit support to shepard build --- systems/x86_64/shepard/configuration.nix | 11 +++++++++++ 1 file changed, 11 insertions(+) diff --git a/systems/x86_64/shepard/configuration.nix b/systems/x86_64/shepard/configuration.nix index ebb745c..95a0a99 100644 --- a/systems/x86_64/shepard/configuration.nix +++ b/systems/x86_64/shepard/configuration.nix @@ -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 + ]; }