mirror of
https://github.com/privatevoid-net/nix-super.git
synced 2024-11-11 00:36:20 +02:00
13 lines
202 B
Nix
13 lines
202 B
Nix
|
let
|
||
|
foo = "foo";
|
||
|
in
|
||
|
{
|
||
|
simple = ./${foo};
|
||
|
surrounded = ./a-${foo}-b;
|
||
|
absolute = /${foo};
|
||
|
expr = ./${foo + "/bar"};
|
||
|
home = ~/${foo};
|
||
|
notfirst = ./bar/${foo};
|
||
|
slashes = /${foo}/${"bar"};
|
||
|
}
|