This allows parsing files like `/etc/nix/nix.conf` into the `NixConfig` struct. Change-Id: I90b25f43c429dd56127500ff5068e83852adee13 Reviewed-on: https://cl.tvl.fyi/c/depot/+/11888 Autosubmit: flokli <flokli@flokli.de> Tested-by: BuildkiteCI Reviewed-by: Brian Olsen <me@griff.name>
19 lines
369 B
Rust
19 lines
369 B
Rust
pub(crate) mod aterm;
|
|
pub mod derivation;
|
|
pub mod nar;
|
|
pub mod narinfo;
|
|
pub mod nixbase32;
|
|
pub mod nixcpp;
|
|
pub mod nixhash;
|
|
pub mod path_info;
|
|
pub mod store_path;
|
|
|
|
#[cfg(feature = "wire")]
|
|
pub mod wire;
|
|
|
|
#[cfg(feature = "wire")]
|
|
mod nix_daemon;
|
|
#[cfg(feature = "wire")]
|
|
pub use nix_daemon::worker_protocol;
|
|
#[cfg(feature = "wire")]
|
|
pub use nix_daemon::ProtocolVersion;
|