Skip to content

Instantly share code, notes, and snippets.

@infinisil
Created June 29, 2017 06:13
Show Gist options
  • Select an option

  • Save infinisil/4a93de3ae1cb9ad9be2e1c02782ced55 to your computer and use it in GitHub Desktop.

Select an option

Save infinisil/4a93de3ae1cb9ad9be2e1c02782ced55 to your computer and use it in GitHub Desktop.
#!/run/current-system/sw/bin/bash
file=test.nix
echo '(import <nixpkgs> {}).writeText "t" "hi"' > $file
drv=$(nix-instantiate $file)
out=$(nix-store -r $drv)
cat $out
nix-store --delete $out
nix-store --delete $drv
rm $file
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment