From eb1161768f0d30ef413c24de4d033b373ebb99b7 Mon Sep 17 00:00:00 2001 From: nyanloutre Date: Tue, 6 Oct 2020 00:21:48 +0200 Subject: [PATCH] steam: utilisation nouvelle option + fix CK3 --- systems/common-gui.nix | 11 +++++++---- 1 file changed, 7 insertions(+), 4 deletions(-) diff --git a/systems/common-gui.nix b/systems/common-gui.nix index ac3086a..8716089 100644 --- a/systems/common-gui.nix +++ b/systems/common-gui.nix @@ -12,7 +12,6 @@ (winetricks.override { wine = wineWowPackages.staging; }) - steam sc-controller steam-run minecraft @@ -80,10 +79,9 @@ console.keyMap = "fr"; + programs.steam.enable = true; + hardware = { - opengl.driSupport32Bit = true; - pulseaudio.support32Bit = true; - steam-hardware.enable = true; pulseaudio.enable = true; }; @@ -124,4 +122,9 @@ ]; }; }; + + environment.etc = { + # CK3 fix + "ssl/certs/f387163d.0".source = "${pkgs.cacert.unbundled}/etc/ssl/certs/Starfield_Class_2_CA.crt"; + }; }