brewery
notashelf /
28de44c5980099270a2482f04284128c54142270

nixir

public

Import-resolving Nix IR plugin

Star0tarball
clone
ssh://git@git.notashelf.dev:33/notashelf/nixir.git
tests/fixtures/nested_attrs.nixNix13 lines196 B
1
# Test nested attribute paths
2
{
3
  # Simple nested path
4
  a.b.c = 42;
5
6
  # Multiple nested paths
7
  x.y = 1;
8
  x.z = 2;
9
10
  # Mix of nested and non-nested
11
  foo = "bar";
12
  nested.deep.value = 100;
13
}