Relago support portal
Here's how you can use/start/build projects
We have many option of running server. Let's see them.
To run server in your config as service, you can import and enable it in your config.
# add input flake
inputs = {
relago-support.url = "github:xinux-org/relago-support";
};
# import into your config
imports = [ inputs.relago-support.nixosModules.server ];
# then enable it in service
services.relago-server = {
enable = true;
port = 42424; # optional. you can see more in server/module.nix file
};You can run it via this command:
cd server
cabal run -- -c <path-to-config>.toml