nex-pkg 0.5.1

Package manager UX for nix-darwin + homebrew
1
2
3
4
5
6
7
8
9
use anyhow::Result;

use crate::exec;
use crate::output;

pub fn run(package: &str) -> Result<()> {
    output::status(&format!("opening ephemeral shell with {package}..."));
    exec::nix_shell(package)
}