Get started with n34 in seconds
-cargo install n34
+ # The execautable will be in ~/.cargo/bin/n34 +or
git clone https://git.4rs.nl/awiteb/n34.git
+cd n34 && cargo build --release
+ # The execautable will be in target/release/n34 +NixOS (Version 0.4.0 or later)
+git clone https://git.4rs.nl/awiteb/n34.git
+cd n34 && nix build
+ # The execautable will be in result/bin/n34 +home-manager
+Add this to your flake.nix inputs
-
# The execautable will be in target/release/n34
+Specify the version you want to install, or remove ?ref for the unreleased version. You can also use any mirror; it doesn't have to be git.4rs.nl
+
+inputs = {
+ n34.url = "git+https://git.4rs.nl/awiteb/n34.git?ref=refs/tags/vx.y.x";
+};
+ And this in your home packages
+packages = [ inputs.n34.packages."${pkgs.system}".default ];
Once installed, run n34 --help to see available commands.