mirror of
https://gitlab.com/rensa-nix/core.git
synced 2026-05-04 20:59:29 +02:00
eg. accessing/returning `cell.b` (cell/b.nix) from cell/a.nix would cause infinite recursion. That's now fixed
4 lines
220 B
Nix
4 lines
220 B
Nix
# test to make sure infinite recursion doesn't happen when accessing sibling blocks
|
|
# run `nix eval .#<system>.test` to check
|
|
# should return { other = { hello = "world"; }; test = «repeated»; }
|
|
{cell, ...}: cell.test
|