Skip to content

Commit

Permalink
Add a shell to try thebacknd binaries.
Browse files Browse the repository at this point in the history
  • Loading branch information
noteed committed May 11, 2024
1 parent 82818cd commit c09d15d
Showing 1 changed file with 8 additions and 0 deletions.
8 changes: 8 additions & 0 deletions default.nix
Original file line number Diff line number Diff line change
Expand Up @@ -36,4 +36,12 @@ in rec
image = os.config.system.build.digitalOceanImage;
runvm = qemu.config.system.build.vm;
binaries = naersk.buildPackage ./.;

# A shell to try out our binaries
# Run with nix-shell default.nix -A shell
shell = pkgs.mkShell {
buildInputs = [
binaries
];
};
}

0 comments on commit c09d15d

Please sign in to comment.