blob: 3960ae62e6962de9a5a2ecf796e91bcf07283ddf [file] [log] [blame]
Skyler Turner0ab3b7f2022-03-04 23:24:10 +00001{ pkgs, ... }: {
Skyler Turner62330c12022-03-04 22:10:16 +00002 home.packages = with pkgs; [
3 steam-run
Skyler Turner32a415f2022-03-13 11:20:27 +00004 proton-caller
Skyler Turner62330c12022-03-04 22:10:16 +00005 ];
6
Skyler Turner0ab3b7f2022-03-04 23:24:10 +00007 # Due to opening the firewall and creating udev rules,
8 # steam proper can only be installed in the main system configuration.
9
10 # Steam-run is a FHS-compliant wrapper (around any executable), which
11 # we can run here, but the main steam package is not here
Skyler Turner32a415f2022-03-13 11:20:27 +000012
13 # Proton-caller is a windows-exe caller which runs windows programs using
14 # Proton
15}