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>
9 lines
271 B
Rust
9 lines
271 B
Rust
//! Contains code parsing some of the Nixcpp config files etc.
|
|
//! left by Nix *on the local disk*.
|
|
//!
|
|
//! This is only for Nix' own state/config.
|
|
//!
|
|
//! More "standardized" protocols, like parts of the Nix HTTP Binary Cache
|
|
//! protocol live elsewhere.
|
|
|
|
pub mod conf;
|