mirror of
https://github.com/privatevoid-net/nix-super.git
synced 2024-11-11 00:36:20 +02:00
14 lines
104 B
Nix
14 lines
104 B
Nix
|
let {
|
||
|
|
||
|
as = {
|
||
|
x = 123;
|
||
|
y = 456;
|
||
|
};
|
||
|
|
||
|
bs = rec {
|
||
|
x = 789;
|
||
|
inherit (as) x;
|
||
|
};
|
||
|
|
||
|
}
|