mirror of
https://github.com/NixOS/nix.git
synced 2024-11-21 22:32:26 +00:00
ece334b532
Reported on matrix by aleksana: https://matrix.to/#/!VRULIdgoKmKPzJZzjj:nixos.org/$7wZp5lUDTd-_u6MYo8kWWcysjtqTiQqP8dLI0RDNVVM?via=nixos.org&via=matrix.org&via=nixos.dev
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")
|
|
]
|
|
];
|
|
}
|