来自https://medium.com/@MrJamesFisher/nix-by-example-a0063a1a4c55:
显式输出不属于语言的一部分。其实没有 命令。您无法写入文件或调用外部 命令。
但是:
nix-repl> x = builtins.toFile "a.txt" "a\n"
nix-repl> x
"/nix/store/z2gxprmwxdfyrb4rka1629bvxxa429ga-a.txt"
nix-repl> :t x
a string with context
~: cat /nix/store/z2gxprmwxdfyrb4rka1629bvxxa429ga-a.txt
a
我的nix repl
会话与上面的引用相矛盾吗?