2025-06-06 11:02:49 +08:00
|
|
|
{
|
2025-06-10 15:54:54 +08:00
|
|
|
radicle-explorer,
|
2025-06-06 11:02:49 +08:00
|
|
|
rootPath,
|
|
|
|
|
}:
|
2025-06-10 15:54:54 +08:00
|
|
|
(radicle-explorer.withConfig {
|
2025-05-13 10:14:31 +08:00
|
|
|
preferredSeeds = [
|
|
|
|
|
{
|
2025-06-30 21:53:44 +08:00
|
|
|
hostname = "seed.youthlic.social";
|
2025-05-13 10:14:31 +08:00
|
|
|
port = 443;
|
|
|
|
|
scheme = "https";
|
|
|
|
|
}
|
|
|
|
|
{
|
|
|
|
|
hostname = "ash.radicle.garden";
|
|
|
|
|
port = 443;
|
|
|
|
|
scheme = "https";
|
|
|
|
|
}
|
|
|
|
|
{
|
|
|
|
|
hostname = "seed.radicle.xyz";
|
|
|
|
|
port = 443;
|
|
|
|
|
scheme = "https";
|
|
|
|
|
}
|
|
|
|
|
{
|
|
|
|
|
hostname = "seed.radicle.garden";
|
|
|
|
|
port = 443;
|
|
|
|
|
scheme = "https";
|
|
|
|
|
}
|
|
|
|
|
];
|
2025-07-13 06:04:55 +08:00
|
|
|
}).overrideAttrs
|
|
|
|
|
(prev: {
|
|
|
|
|
postInstall = (prev.postInstall or "") + ''
|
|
|
|
|
ln -s ${
|
|
|
|
|
rootPath + "/assets/radicle-explorer/youthlic-seed-header.png"
|
|
|
|
|
} $out/images/youthlic-seed-header.png
|
|
|
|
|
ln -s ${
|
|
|
|
|
rootPath + "/assets/radicle-explorer/youthlic-seed-avatar.jpg"
|
|
|
|
|
} $out/images/youthlic-seed-avatar.jpg
|
2025-05-14 03:37:58 +08:00
|
|
|
'';
|
2025-07-13 06:04:55 +08:00
|
|
|
})
|