From d725309c965ccad663c16f141ccedecd64317b96 Mon Sep 17 00:00:00 2001 From: zowoq <59103226+zowoq@users.noreply.github.com> Date: Sat, 4 Nov 2023 19:17:06 +1000 Subject: [PATCH] treewide: update URLs, .github/settings.yml: update team (#284) * treewide: update URLs * .github/settings.yml: update team --- .github/settings.yml | 4 ++-- README.md | 2 +- docs/faq.md | 2 +- docs/getting_started.md | 2 +- docs/help.md | 2 +- docs/installation/hetzner_cloud.md | 4 ++-- mkdocs.yml | 6 +++--- 7 files changed, 11 insertions(+), 11 deletions(-) diff --git a/.github/settings.yml b/.github/settings.yml index 5cea3b4..92a1da5 100644 --- a/.github/settings.yml +++ b/.github/settings.yml @@ -8,7 +8,7 @@ repository: description: NixOS profiles for servers # A URL with more information about the repository - homepage: "https://numtide.github.io/srvos" + homepage: "https://nix-community.github.io/srvos" # A comma-separated list of topics to set on the repository topics: "nix, nixos" @@ -94,7 +94,7 @@ collaborators: # See https://docs.github.com/en/rest/reference/teams#add-or-update-team-repository-permissions for available options teams: - - name: network + - name: srvos # The permission to grant the team. Can be one of: # * `pull` - can pull, but not push to or administer this repository. # * `push` - can pull and push, but not administer this repository. diff --git a/README.md b/README.md index facbaef..8fba91f 100644 --- a/README.md +++ b/README.md @@ -17,7 +17,7 @@ example to deploy a GitHub Action runner on Hetzner: { description = "My machines flakes"; inputs = { - srvos.url = "github:numtide/srvos"; + srvos.url = "github:nix-community/srvos"; # Use the version of nixpkgs that has been tested to work with SrvOS # Alternativly we also support the latest nixos release and unstable nixpkgs.follows = "srvos/nixpkgs"; diff --git a/docs/faq.md b/docs/faq.md index a866852..9cf68a0 100644 --- a/docs/faq.md +++ b/docs/faq.md @@ -8,7 +8,7 @@ If you want to make sure to use a tested version, use the "follows" mechanims of ```nix { - inputs.srvos.url = "github:numtide/srvos"; + inputs.srvos.url = "github:nix-community/srvos"; # Use the version of nixpkgs that has been tested to work with SrvOS inputs.nixpkgs.follows = "srvos/nixpkgs"; } diff --git a/docs/getting_started.md b/docs/getting_started.md index 0e3955e..ab6e908 100644 --- a/docs/getting_started.md +++ b/docs/getting_started.md @@ -21,7 +21,7 @@ Combining all of those together, here is how your `flake.nix` might look like, t { description = "My machines flakes"; inputs = { - srvos.url = "github:numtide/srvos"; + srvos.url = "github:nix-community/srvos"; # Use the version of nixpkgs that has been tested to work with SrvOS # Alternativly we also support the latest nixos release and unstable nixpkgs.follows = "srvos/nixpkgs"; diff --git a/docs/help.md b/docs/help.md index f52432f..441eed8 100644 --- a/docs/help.md +++ b/docs/help.md @@ -2,7 +2,7 @@ ## Bugs -If you found a bug, feel free to create a new [GitHub issue](https://github.com/numtide/srvos/issues/new/choose). +If you found a bug, feel free to create a new [GitHub issue](https://github.com/nix-community/srvos/issues/new/choose). ## Feature development diff --git a/docs/installation/hetzner_cloud.md b/docs/installation/hetzner_cloud.md index c6622e1..5f4dabe 100644 --- a/docs/installation/hetzner_cloud.md +++ b/docs/installation/hetzner_cloud.md @@ -9,8 +9,8 @@ ```nix { - inputs.nixos-anywhere.url = "github:numtide/nixos-anywere"; - inputs.srvos.url = "github:numtide/srvos"; + inputs.nixos-anywhere.url = "github:nix-community/nixos-anywhere"; + inputs.srvos.url = "github:nix-community/srvos"; inputs.disko.url = "github:nix-community/disko"; outputs = { self, nixos-remote, srvos, disko, nixpkgs }: { diff --git a/mkdocs.yml b/mkdocs.yml index 92c2915..16bab19 100644 --- a/mkdocs.yml +++ b/mkdocs.yml @@ -4,9 +4,9 @@ INHERIT: !ENV MKDOCS_NUMTIDE_THEME site_name: SrvOS site_description: NixOS profiles for servers -site_url: https://numtide.github.io/srvos/ -repo_name: 'numtide/srvos' -repo_url: https://github.com/numtide/srvos +site_url: https://nix-community.github.io/srvos/ +repo_name: 'nix-community/srvos' +repo_url: https://github.com/nix-community/srvos edit_uri: edit/main/docs ### Navigation ###