mirror of
https://github.com/privatevoid-net/nix-super.git
synced 2024-11-10 00:08:07 +02:00
ebade9ff8b
check' now succeeds :-) * An attribute set such as `{ foo = { enable = true; }; foo.port = 23; }' now parses. It was previously rejected, but I'm too lazy to implement the check. (The only reason to reject it is that the reverse, `{ foo.port = 23; foo = { enable = true; }; }', is rejected, which is kind of ugly.)
4 lines
67 B
Nix
4 lines
67 B
Nix
{
|
|
services.ssh = { enable = true; };
|
|
services.ssh.port = 23;
|
|
}
|