We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f508d4b commit c518de4Copy full SHA for c518de4
src/cli.rs
@@ -23,21 +23,21 @@ use tokio::process::Command;
23
pub struct Opts {
24
/// The flake to deploy
25
#[clap(group = "deploy")]
26
- target: Option<String>,
+ pub target: Option<String>,
27
28
/// A list of flakes to deploy alternatively
29
#[clap(long, group = "deploy")]
30
- targets: Option<Vec<String>>,
+ pub targets: Option<Vec<String>>,
31
32
/// Override hostname used for the node
33
#[clap(long)]
34
- hostname: Option<String>,
+ pub hostname: Option<String>,
35
36
#[clap(flatten)]
37
- flags: data::Flags,
+ pub flags: data::Flags,
38
39
40
- generic_settings: settings::GenericSettings,
+ pub generic_settings: settings::GenericSettings,
41
}
42
43
/// Returns if the available Nix installation supports flakes
0 commit comments