A fork of attic a self-hostable Nix Binary Cache server
0
fork

Configure Feed

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

at main 8 lines 232 B view raw
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};