Personal-use NixOS configuration
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

at main 15 lines 196 B view raw
1{ pkgs, ... }: 2 3{ 4 programs.steam = { 5 enable = true; 6 7 extest.enable = true; 8 9 extraCompatPackages = with pkgs; [ 10 proton-ge-bin 11 ]; 12 13 remotePlay.openFirewall = true; 14 }; 15}