mirror of
https://github.com/privatevoid-net/nix-super.git
synced 2024-11-10 00:08:07 +02:00
ece334b532
Reported on matrix by aleksana: https://matrix.to/#/!VRULIdgoKmKPzJZzjj:nixos.org/$7wZp5lUDTd-_u6MYo8kWWcysjtqTiQqP8dLI0RDNVVM?via=nixos.org&via=matrix.org&via=nixos.dev
19 lines
281 B
Nix
19 lines
281 B
Nix
{
|
|
oneDeep = {
|
|
homepage = "https://" + "example.com";
|
|
};
|
|
twoDeep = {
|
|
layerOne = {
|
|
homepage = "https://" + "example.com";
|
|
};
|
|
};
|
|
|
|
oneDeepList = [
|
|
("https://" + "example.com")
|
|
];
|
|
twoDeepList = [
|
|
[
|
|
("https://" + "example.com")
|
|
]
|
|
];
|
|
}
|