tangled
alpha
login
or
join now
tsiry-sandratraina.com
/
oh-my-droid
3
fork
atom
Opinionated Android 15+ Linux Terminal Setup
android
linux
command-line-tools
3
fork
atom
overview
issues
pulls
pipelines
add nix to PATH
tsiry-sandratraina.com
7 months ago
67951733
fa08f150
1/1
fmt.yml
success
2s
+6
1 changed file
expand all
collapse all
unified
split
src
apply.rs
+6
src/apply.rs
···
457
457
)
458
458
.context("Failed to add ~/.local/bin to PATH in .bashrc")?;
459
459
460
460
+
run_command(
461
461
+
"bash",
462
462
+
&["-c", "grep -q 'export PATH=\"/nix/var/nix/profiles/default/bin:$PATH\"' ~/.bashrc || echo 'export PATH=\"/nix/var/nix/profiles/default/bin:$PATH\"' >> ~/.bashrc"],
463
463
+
)
464
464
+
.context("Failed to add /nix/var/nix/profiles/default/bin to PATH in .bashrc")?;
465
465
+
460
466
Ok(())
461
467
}
462
468