mirror of
https://github.com/privatevoid-net/nix-super.git
synced 2024-11-10 08:16:15 +02:00
9 lines
80 B
Nix
9 lines
80 B
Nix
let
|
|
c = {};
|
|
b = 2;
|
|
in {
|
|
a = 1;
|
|
inherit b;
|
|
inherit (c) d e;
|
|
f = 3;
|
|
}
|