ok i think i fixed it

This commit is contained in:
Sakooooo 2025-01-07 10:14:27 +04:00
parent de8337edae
commit 8f0b1ac731
Signed by: sako
GPG key ID: 3FD715D87D7725E0

View file

@ -26,46 +26,50 @@ in {
memory = true; memory = true;
}; };
}]; }];
services = [{ services = [
"Media" = [ ] ++ lib.optionals srv.media.jellyfin.enable [{ {
"Jellyfin" = { "Media" = [ ] ++ lib.optionals srv.media.jellyfin.enable [{
description = "media server"; "Jellyfin" = {
href = "https://jellyfin.sako.box"; description = "media server";
icon = "jellyfin.svg"; href = "https://jellyfin.sako.box";
}; icon = "jellyfin.svg";
}]; };
"Services" = [ ] ++ lib.optionals srv.services.forgejo.enable [{ }];
"Forgejo" = { }
description = "Selfhosted Git Forge"; {
icon = "forgejo.svg"; "Services" = [ ] ++ lib.optionals srv.services.forgejo.enable [{
href = "https://git.sako.lol"; "Forgejo" = {
}; description = "Selfhosted Git Forge";
}] ++ lib.optionals srv.fedi.akkoma.enable [{ icon = "forgejo.svg";
"Akkoma" = { href = "https://git.sako.lol";
description = "Fediverse"; };
icon = "akkoma.svg"; }] ++ lib.optionals srv.fedi.akkoma.enable [{
href = "https://fedi.sako.lol"; "Akkoma" = {
}; description = "Fediverse";
}] ++ lib.optionals srv.services.redlib.enable [{ icon = "akkoma.svg";
"Redlib" = { href = "https://fedi.sako.lol";
icon = "redlib.svg"; };
description = "privacy friendly reddit frontend"; }] ++ lib.optionals srv.services.redlib.enable [{
href = "https://redlib.sako.box"; "Redlib" = {
}; icon = "redlib.svg";
}] ++ lib.optionals srv.services.local.nextcloud.enable [{ description = "privacy friendly reddit frontend";
"Nextcloud" = { href = "https://redlib.sako.box";
icon = "nextcloud.svg"; };
description = "selfhosted cloud"; }] ++ lib.optionals srv.services.local.nextcloud.enable [{
href = "https://nextcloud.sako.box"; "Nextcloud" = {
}; icon = "nextcloud.svg";
}] ++ lib.optionals srv.services.sakosite.enable [{ description = "selfhosted cloud";
"Site" = { href = "https://nextcloud.sako.box";
icon = "https://sako.lol/icon.png"; };
description = "personal site"; }] ++ lib.optionals srv.services.sakosite.enable [{
href = "https://sako.lol"; "Site" = {
}; icon = "https://sako.lol/icon.png";
}]; description = "personal site";
}]; href = "https://sako.lol";
};
}];
}
];
}; };
}; };
}; };