Skyler Turner | 0ab3b7f | 2022-03-04 23:24:10 +0000 | [diff] [blame] | 1 | { pkgs, ... }: { |
Skyler Turner | 62330c1 | 2022-03-04 22:10:16 +0000 | [diff] [blame] | 2 | home.packages = with pkgs; [ |
| 3 | steam-run |
| 4 | ]; |
| 5 | |
Skyler Turner | 0ab3b7f | 2022-03-04 23:24:10 +0000 | [diff] [blame] | 6 | # Due to opening the firewall and creating udev rules, |
| 7 | # steam proper can only be installed in the main system configuration. |
| 8 | |
| 9 | # Steam-run is a FHS-compliant wrapper (around any executable), which |
| 10 | # we can run here, but the main steam package is not here |
Skyler Turner | 62330c1 | 2022-03-04 22:10:16 +0000 | [diff] [blame] | 11 | } |