Select the types of activity you want to include in your feed.
1/// The distributor of this Attic client. 2/// 3/// Common values include `nixpkgs`, `attic` and `dev`. 4pub const ATTIC_DISTRIBUTOR: &str = if let Some(distro) = option_env!("ATTIC_DISTRIBUTOR") { 5 distro 6} else { 7 "unknown" 8};