diff --git a/configuration/modules/system/graphics.nix b/configuration/modules/system/graphics.nix index 4177f69..9baabc4 100644 --- a/configuration/modules/system/graphics.nix +++ b/configuration/modules/system/graphics.nix @@ -5,6 +5,7 @@ hardware = { graphics.enable = true; + enable32Bit = true; nvidia = { modesetting.enable = true; diff --git a/configuration/modules/system/programs.nix b/configuration/modules/system/programs.nix index a098a83..e8f4882 100644 --- a/configuration/modules/system/programs.nix +++ b/configuration/modules/system/programs.nix @@ -1,10 +1,11 @@ -{ +{pkgs, ...}: { programs = { steam = { enable = true; remotePlay.openFirewall = true; dedicatedServer.openFirewall = true; localNetworkGameTransfers.openFirewall = true; + extraPackages = with pkgs; [freetype]; }; gamemode.enable = true;