mirror of
https://github.com/NixOS/nix.git
synced 2025-02-23 12:22:47 +00:00
14 lines
100 B
Nix
14 lines
100 B
Nix
let {
|
|
|
|
as = {
|
|
x = 123;
|
|
y = 456;
|
|
};
|
|
|
|
bs = {
|
|
x = 789;
|
|
inherit (as) x;
|
|
};
|
|
|
|
}
|