From 33235fa32e8941581673f8a6561796adc184f07d Mon Sep 17 00:00:00 2001 From: Charlotte Van Petegem Date: Sun, 22 Oct 2023 12:08:25 +0200 Subject: [PATCH] steam: Add protontricks and wine --- modules/games/steam/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/modules/games/steam/default.nix b/modules/games/steam/default.nix index 482c18e4..6d3bff03 100644 --- a/modules/games/steam/default.nix +++ b/modules/games/steam/default.nix @@ -13,7 +13,7 @@ }; services.pipewire.alsa.support32Bit = true; chvp.base = { - nix.unfreePackages = [ "steam" "steam-original" "steam-runtime" ]; + nix.unfreePackages = [ "steam" "steam-original" "steam-runtime" "steam-run" ]; zfs.homeLinks = [ { path = ".paradoxlauncher"; type = "cache"; } { path = ".steam"; type = "cache"; } @@ -23,7 +23,7 @@ }; home-manager.users.charlotte = { pkgs, ... }: { - home.packages = [ pkgs.steam ]; + home.packages = [ pkgs.steam pkgs.protontricks pkgs.wine ]; }; }; }