pinix 0.3.0

Progress In Nix - Pacman inspired frontend for Nix
Documentation
1
2
3
4
5
6
7
8
use pinix::wrapper::command::NixCommand;

#[tokio::main(flavor = "current_thread")]
async fn main() -> anyhow::Result<()> {
    NixCommand::from_args(std::env::args().skip(1))
        .exec_copycat()
        .await
}