rnix 0.14.0

A Nix parser written in Rust
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
let
  world = "World";
in {
  string = "Hello ${world}!";
  multiline = ''
    The set's x value is: ${
      {
        x = "1";
        y = "2";
      }.x
    }

    This line shall have no indention
      This line shall be indented by 2
    ''\n
    ${ "hi" }
  '';
}