From 55cfa67bae5fa2fb12325feec026fa952584df31 Mon Sep 17 00:00:00 2001 From: ediblerope Date: Tue, 9 Dec 2025 15:18:11 +0000 Subject: [PATCH] Update FredOS-Gaming.nix --- hosts/FredOS-Gaming.nix | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/hosts/FredOS-Gaming.nix b/hosts/FredOS-Gaming.nix index 5619279..f53c9e8 100644 --- a/hosts/FredOS-Gaming.nix +++ b/hosts/FredOS-Gaming.nix @@ -1,11 +1,21 @@ { config, pkgs, lib, ... }: { config = lib.mkIf (config.networking.hostName == "FredOS-Gaming") { + + nixpkgs.config.packageOverrides = pkgs: { + pkgs = pkgs // { + # This is where you pull in 32-bit packages + # We access the i686-linux architecture set: + lib32 = pkgs.pkgsi686Linux.pkgs; + }; + }; environment.systemPackages = with pkgs; [ lutris adwaita-icon-theme # Helps with missing cursors/icons in some Wine games nix-index + libdecor + lib32.libdecor ]; # Enables Vulkan and OpenGL drivers @@ -14,6 +24,8 @@ enable32Bit = true; }; + + programs.steam = { enable = true; remotePlay.openFirewall = true;