diff options
| author | Mehmet Samet Duman <yongdohyun@projecttick.org> | 2026-04-02 18:43:51 +0300 |
|---|---|---|
| committer | Mehmet Samet Duman <yongdohyun@projecttick.org> | 2026-04-02 18:43:51 +0300 |
| commit | b85e90fc3480da0e6a48da73201a0b22488cc650 (patch) | |
| tree | 42b2e083e7d268747b01a03c0bedb48a9394585e /meta/README.md | |
| parent | 5c7048091e3a191e8a34f26852a8976b254e339b (diff) | |
| parent | f88d1f18953f9619444d56756702c7eb54580ab1 (diff) | |
| download | Project-Tick-b85e90fc3480da0e6a48da73201a0b22488cc650.tar.gz Project-Tick-b85e90fc3480da0e6a48da73201a0b22488cc650.zip | |
Add 'meta/' from commit 'f88d1f18953f9619444d56756702c7eb54580ab1'
git-subtree-dir: meta
git-subtree-mainline: 5c7048091e3a191e8a34f26852a8976b254e339b
git-subtree-split: f88d1f18953f9619444d56756702c7eb54580ab1
Diffstat (limited to 'meta/README.md')
| -rw-r--r-- | meta/README.md | 37 |
1 files changed, 37 insertions, 0 deletions
diff --git a/meta/README.md b/meta/README.md new file mode 100644 index 0000000000..02b43e60f4 --- /dev/null +++ b/meta/README.md @@ -0,0 +1,37 @@ +# Prism Launcher Meta + +Scripts to generate jsons and jars that Prism Launcher will access. + +## Recommended Deployment + +Assuming you have a Flake-based NixOS configuration + +- Add Flake input: + + ```nix + { + inputs.prism-meta.url = "github:PrismLauncher/meta"; + } + ``` + +- Import NixOS module and configure + + ```nix + {inputs, ...}: { + imports = [inputs.prism-meta.nixosModules.default]; + services.blockgame-meta = { + enable = true; + settings = { + DEPLOY_TO_GIT = "true"; + GIT_AUTHOR_NAME = "Herpington Derpson"; + GIT_AUTHOR_EMAIL = "herpderp@derpmail.com"; + GIT_COMMITTER_NAME = "Herpington Derpson"; + GIT_COMMITTER_EMAIL = "herpderp@derpmail.com"; + }; + }; + } + ``` + +- Rebuild and activate! +- Trigger it `systemctl start blockgame-meta.service` +- Monitor it `journalctl -fu blockgame-meta.service` |
