refactor(#2111): remove nixpkgs-unstable, source claude-code from main nixpkgs
This commit is contained in:
parent
26dd8b0d34
commit
ae41e39dfb
8 changed files with 26 additions and 147 deletions
|
|
@ -54,11 +54,6 @@ enum Cmd {
|
|||
/// `follows = "hyperhive/nixpkgs"` fallback.
|
||||
#[arg(long)]
|
||||
nixpkgs_flake: Option<String>,
|
||||
/// Override: store-path URL of the nixpkgs-unstable to wire into
|
||||
/// the meta flake as `inputs.nixpkgs-unstable.url`. Empty = legacy
|
||||
/// `follows = "hyperhive/nixpkgs-unstable"` fallback.
|
||||
#[arg(long)]
|
||||
nixpkgs_unstable_flake: Option<String>,
|
||||
/// Override: dashboard HTTP port.
|
||||
#[arg(long)]
|
||||
dashboard_port: Option<u16>,
|
||||
|
|
@ -155,7 +150,6 @@ async fn main() -> Result<()> {
|
|||
db,
|
||||
hyperhive_flake,
|
||||
nixpkgs_flake,
|
||||
nixpkgs_unstable_flake,
|
||||
dashboard_port,
|
||||
operator_pronouns,
|
||||
context_window_tokens,
|
||||
|
|
@ -181,9 +175,6 @@ async fn main() -> Result<()> {
|
|||
if let Some(v) = nixpkgs_flake {
|
||||
sc.env.nixpkgs_flake = v;
|
||||
}
|
||||
if let Some(v) = nixpkgs_unstable_flake {
|
||||
sc.env.nixpkgs_unstable_flake = v;
|
||||
}
|
||||
if let Some(v) = dashboard_port {
|
||||
sc.env.dashboard_port = v;
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in a new issue