Select the types of activity you want to include in your feed.
1{ 2 config, 3 lib, 4 pkgs, 5 ... 6}: { 7 options.modules.home.steam = { 8 enable = lib.mkEnableOption "steam"; 9 }; 10 11 config = lib.mkIf config.modules.home.steam.enable { 12 home.packages = [ 13 pkgs.steam 14 ]; 15 }; 16}