mirror of
https://github.com/privatevoid-net/nix-super.git
synced 2024-11-10 08:16:15 +02:00
12 lines
195 B
Nix
12 lines
195 B
Nix
|
builtins.toJSON
|
||
|
{ a = 123;
|
||
|
b = -456;
|
||
|
c = "foo";
|
||
|
d = "foo\n\"bar\"";
|
||
|
e = true;
|
||
|
f = false;
|
||
|
g = [ 1 2 3 ];
|
||
|
h = [ "a" [ "b" { "foo\nbar" = {}; } ] ];
|
||
|
i = 1 + 2;
|
||
|
}
|