{"id":18790678,"url":"https://github.com/onsails/nym-validator-flake","last_synced_at":"2025-09-14T15:50:43.838Z","repository":{"id":139147495,"uuid":"365372197","full_name":"onsails/nym-validator-flake","owner":"onsails","description":null,"archived":false,"fork":false,"pushed_at":"2021-05-14T18:22:22.000Z","size":14,"stargazers_count":1,"open_issues_count":0,"forks_count":0,"subscribers_count":2,"default_branch":"master","last_synced_at":"2025-08-28T18:09:46.260Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":null,"language":"Nix","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/onsails.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":null,"code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null,"zenodo":null}},"created_at":"2021-05-07T23:03:58.000Z","updated_at":"2023-03-05T07:58:37.000Z","dependencies_parsed_at":null,"dependency_job_id":"7db3e79b-c43e-49a2-a9f2-cb498e9dce27","html_url":"https://github.com/onsails/nym-validator-flake","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/onsails/nym-validator-flake","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/onsails%2Fnym-validator-flake","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/onsails%2Fnym-validator-flake/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/onsails%2Fnym-validator-flake/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/onsails%2Fnym-validator-flake/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/onsails","download_url":"https://codeload.github.com/onsails/nym-validator-flake/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/onsails%2Fnym-validator-flake/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":275128277,"owners_count":25410368,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","status":"online","status_checked_at":"2025-09-14T02:00:10.474Z","response_time":75,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":[],"created_at":"2024-11-07T21:13:14.280Z","updated_at":"2025-09-14T15:50:43.813Z","avatar_url":"https://github.com/onsails.png","language":"Nix","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Nym Validator flake\n\n## nymd package\n\nThis flake builds `nymd` in a way closest to [the official instruction](https://nymtech.net/docs/run-nym-nodes/validators/).\nThe resulting binary is linked to a `libwasm.so` which is already in the store upon nymd build.\n\n```bash\nnix build .#packages.x86_64-linux.nymd\n```\n\n## nymd NixOS systemd service\n\nflake.nix:\n```nix\n{\n  inputs = {\n    nixpkgs-unstable.url = github:NixOS/nixpkgs/nixos-unstable;\n    nymd-src.url = github:onsails/nym-validator-flake;\n  };\n\n  outputs = { nixpkgs-unstable, nymd-src }: {\n    nixosConfigurations.node-name = nixpkgs-unstable.lib.nixosSystem(\n      let system = \"x86_64-linux\";\n      in\n      {\n        inherit system;\n        modules = [\n          # other modules for example:\n          # \"${nixpkgs-unstable}/nixos/modules/virtualisation/google-compute-image.nix\"\n          inputs.nymd-src.nixosModules.${system}.nymd\n          ({lib, ...}: {\n            nixpkgs.overlays = [\n              (self: super: {\n                nymd = inputs.nymd-src.packages.${system}.nymd;\n              })\n            ];\n\n            services.nymd = {\n              enable = true;\n              name = \"Your Validator Name\";\n\n              publicAddr = {\n                ip = \"sentry node ip\";\n                port = \"sentry node port\";\n              };\n            };\n          })\n        ];\n      }\n    );\n  };\n}\n```\n\nYou can also enable prometheus monitoring, see [options](https://github.com/onsails/nym-validator-flake/tree/master/nix/nixos-module.nix).\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fonsails%2Fnym-validator-flake","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fonsails%2Fnym-validator-flake","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fonsails%2Fnym-validator-flake/lists"}