Skip to content

Commit

Permalink
chore: docgen
Browse files Browse the repository at this point in the history
  • Loading branch information
PoisonPhang authored and o-az committed Sep 24, 2024
1 parent c9ee5b0 commit 5d89244
Showing 1 changed file with 13 additions and 2 deletions.
15 changes: 13 additions & 2 deletions unionvisor/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,13 @@ An example flake.nix configuration can be found in [`usage.nix`](./usage.nix):
nixpkgs.url = "github:NixOS/nixpkgs/nixos-unstable";
union.url = "git+ssh://[email protected]/unionlabs/union";
};
outputs = { self, nixpkgs, union, ... }:
outputs =
{
self,
nixpkgs,
union,
...
}:
{
nixosConfigurations.testnet-validator =
let
Expand All @@ -31,7 +37,12 @@ An example flake.nix configuration can be found in [`usage.nix`](./usage.nix):
imports = [ "${nixpkgs}/nixos/modules/virtualisation/openstack-config.nix" ];
# Allow other validators to reach you
networking.firewall.allowedTCPPorts = [ 80 443 26656 26657 ];
networking.firewall.allowedTCPPorts = [
80
443
26656
26657
];
# Unionvisor module configuration
services.unionvisor = {
Expand Down

0 comments on commit 5d89244

Please sign in to comment.