mirror of
https://github.com/privatevoid-net/nix-super.git
synced 2024-11-10 16:26:18 +02:00
20 lines
281 B
Nix
20 lines
281 B
Nix
|
{
|
||
|
oneDeep = {
|
||
|
homepage = "https://" + "example.com";
|
||
|
};
|
||
|
twoDeep = {
|
||
|
layerOne = {
|
||
|
homepage = "https://" + "example.com";
|
||
|
};
|
||
|
};
|
||
|
|
||
|
oneDeepList = [
|
||
|
("https://" + "example.com")
|
||
|
];
|
||
|
twoDeepList = [
|
||
|
[
|
||
|
("https://" + "example.com")
|
||
|
]
|
||
|
];
|
||
|
}
|