add service information to mine.shared.meta
This commit is contained in:
parent
74ff08576a
commit
280ad7013d
5 changed files with 81 additions and 0 deletions
|
@ -1,6 +1,23 @@
|
|||
{ config, ... }:
|
||||
|
||||
{
|
||||
imports = [
|
||||
./forgejo.nix
|
||||
./auth_sources.nix
|
||||
];
|
||||
|
||||
|
||||
mine.shared.meta.forgejo = {
|
||||
name = "Forgejo";
|
||||
description = "We host our own Forgejo for hosting and managing your code! Login using your credentials.";
|
||||
url = "https://${config.mine.shared.settings.forgejo.domain}";
|
||||
|
||||
package = let
|
||||
pkg = config.services.forgejo.package;
|
||||
in {
|
||||
name = pkg.pname;
|
||||
version = pkg.version;
|
||||
meta = pkg.meta;
|
||||
};
|
||||
};
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue