From 7cf90a3b2ed3a6a2d51b5cb22a9be73d4598c4c5 Mon Sep 17 00:00:00 2001 From: marshmallow Date: Sat, 18 Oct 2025 10:58:05 +1100 Subject: [PATCH] rename repo location --- README.md | 6 +++--- doc/.vitepress/config.ts | 8 ++++---- doc/.vitepress/theme/index.ts | 2 +- doc/guides/installation.md | 2 +- doc/snippets/getting-started/configuration.nix | 5 +++-- doc/snippets/getting-started/flake-merged.nix | 2 +- doc/snippets/getting-started/flake.nix | 2 +- doc/snippets/getting-started/hm.flake.nix | 2 +- doc/snippets/getting-started/home.nix | 5 +++-- doc/snippets/getting-started/nixos.flake.nix | 2 +- doc/snippets/guides/installation/flake.nix | 2 +- doc/tutorial/part-one/repo-setup.md | 8 ++++---- wire/lib/src/hive/steps/keys.rs | 2 +- 13 files changed, 25 insertions(+), 23 deletions(-) diff --git a/README.md b/README.md index 3d4a1ef..ca33600 100644 --- a/README.md +++ b/README.md @@ -1,8 +1,8 @@ # wire -![Rust Tests Status](https://img.shields.io/github/actions/workflow/status/wires-org/wire/test.yml?branch=main&style=flat-square&label=Rust%20Tests) -![BuildBot Build & VM Test Status](https://img.shields.io/github/checks-status/wires-org/wire/main?style=flat-square&label=BuildBot%20Build%20%26%20VM%20Tests) -![Documentation Status](https://img.shields.io/github/actions/workflow/status/wires-org/wire/pages.yml?branch=main&style=flat-square&label=Documentation) +![Rust Tests Status](https://img.shields.io/github/actions/workflow/status/mrshmllow/wire/test.yml?branch=main&style=flat-square&label=Rust%20Tests) +![BuildBot Build & VM Test Status](https://img.shields.io/github/checks-status/mrshmllow/wire/main?style=flat-square&label=BuildBot%20Build%20%26%20VM%20Tests) +![Documentation Status](https://img.shields.io/github/actions/workflow/status/mrshmllow/wire/pages.yml?branch=main&style=flat-square&label=Documentation) wire is a tool to deploy nixos systems. its usage is inspired by colmena however it is not a fork. diff --git a/doc/.vitepress/config.ts b/doc/.vitepress/config.ts index 47b6747..07c79ab 100644 --- a/doc/.vitepress/config.ts +++ b/doc/.vitepress/config.ts @@ -20,7 +20,7 @@ export default withMermaid( footer: { message: - 'Released under the AGPL-3.0 License.', + 'Released under the AGPL-3.0 License.', copyright: "Copyright 2024-2025 wire Contributors", }, @@ -35,7 +35,7 @@ export default withMermaid( items: [ { text: "Changelog", - link: "https://github.com/wires-org/wire/blob/main/CHANGELOG.md", + link: "https://github.com/mrshmllow/wire/blob/main/CHANGELOG.md", }, ], }, @@ -127,12 +127,12 @@ export default withMermaid( }, editLink: { - pattern: "https://github.com/wires-org/wire/edit/main/doc/:path", + pattern: "https://github.com/mrshmllow/wire/edit/main/doc/:path", text: "Edit this page on GitHub", }, socialLinks: [ - { icon: "github", link: "https://github.com/wires-org/wire" }, + { icon: "github", link: "https://github.com/mrshmllow/wire" }, ], }, markdown: { diff --git a/doc/.vitepress/theme/index.ts b/doc/.vitepress/theme/index.ts index e01ffb3..5594d89 100644 --- a/doc/.vitepress/theme/index.ts +++ b/doc/.vitepress/theme/index.ts @@ -16,7 +16,7 @@ export default { giscusTalk( { - repo: "wires-org/wire", + repo: "mrshmllow/wire", repoId: "R_kgDOMQQbzw", category: "giscus", // default: `General` categoryId: "DIC_kwDOMQQbz84Co4vv", diff --git a/doc/guides/installation.md b/doc/guides/installation.md index 62674a6..2e0fc8d 100644 --- a/doc/guides/installation.md +++ b/doc/guides/installation.md @@ -34,7 +34,7 @@ your hive from. ## Installation through npins ```sh -$ npins add github wires-org wire --at v0.5.0 +$ npins add github mrshmllow wire --at v0.5.0 ``` ::: code-group diff --git a/doc/snippets/getting-started/configuration.nix b/doc/snippets/getting-started/configuration.nix index c7b3483..d70d3c6 100644 --- a/doc/snippets/getting-started/configuration.nix +++ b/doc/snippets/getting-started/configuration.nix @@ -1,6 +1,7 @@ {system, ...}: let - wire = import ( # [!code ++] - builtins.fetchTarball "https://github.com/wires-org/wire/archive/refs/heads/main.tar.gz" # [!code ++] + wire = import ( + # [!code ++] + builtins.fetchTarball "https://github.com/mrshmllow/wire/archive/refs/heads/main.tar.gz" # [!code ++] ); # [!code ++] in { environment.systemPackages = [ diff --git a/doc/snippets/getting-started/flake-merged.nix b/doc/snippets/getting-started/flake-merged.nix index 2c9a52a..b2e974e 100644 --- a/doc/snippets/getting-started/flake-merged.nix +++ b/doc/snippets/getting-started/flake-merged.nix @@ -1,6 +1,6 @@ { inputs.nixpkgs.url = "github:NixOS/nixpkgs/nixos-unstable"; - inputs.wire.url = "github:wires-org/wire"; + inputs.wire.url = "github:mrshmllow/wire"; outputs = { self, diff --git a/doc/snippets/getting-started/flake.nix b/doc/snippets/getting-started/flake.nix index 8c0e35a..3bdb7e2 100644 --- a/doc/snippets/getting-started/flake.nix +++ b/doc/snippets/getting-started/flake.nix @@ -1,6 +1,6 @@ { inputs.nixpkgs.url = "github:NixOS/nixpkgs/nixos-unstable"; - inputs.wire.url = "github:wires-org/wire"; + inputs.wire.url = "github:mrshmllow/wire"; outputs = inputs @ { nixpkgs, diff --git a/doc/snippets/getting-started/hm.flake.nix b/doc/snippets/getting-started/hm.flake.nix index 7c60eef..639edfa 100644 --- a/doc/snippets/getting-started/hm.flake.nix +++ b/doc/snippets/getting-started/hm.flake.nix @@ -6,7 +6,7 @@ url = "github:nix-community/home-manager"; inputs.nixpkgs.follows = "nixpkgs"; }; - wire.url = "github:wires-org/wire"; # [!code ++] + wire.url = "github:mrshmllow/wire"; # [!code ++] }; outputs = { diff --git a/doc/snippets/getting-started/home.nix b/doc/snippets/getting-started/home.nix index 838bb22..f62235a 100644 --- a/doc/snippets/getting-started/home.nix +++ b/doc/snippets/getting-started/home.nix @@ -1,6 +1,7 @@ {system, ...}: let - wire = import ( # [!code ++] - builtins.fetchTarball "https://github.com/wires-org/wire/archive/refs/heads/main.tar.gz" # [!code ++] + wire = import ( + # [!code ++] + builtins.fetchTarball "https://github.com/mrshmllow/wire/archive/refs/heads/main.tar.gz" # [!code ++] ); # [!code ++] in { home.packages = [ diff --git a/doc/snippets/getting-started/nixos.flake.nix b/doc/snippets/getting-started/nixos.flake.nix index 2873e9d..e64d4e5 100644 --- a/doc/snippets/getting-started/nixos.flake.nix +++ b/doc/snippets/getting-started/nixos.flake.nix @@ -2,7 +2,7 @@ inputs = { # ... nixpkgs.url = "github:nixos/nixpkgs/nixos-unstable"; - wire.url = "github:wires-org/wire"; # [!code ++] + wire.url = "github:mrshmllow/wire"; # [!code ++] }; outputs = inputs @ { diff --git a/doc/snippets/guides/installation/flake.nix b/doc/snippets/guides/installation/flake.nix index 193c1f2..a8b3ade 100644 --- a/doc/snippets/guides/installation/flake.nix +++ b/doc/snippets/guides/installation/flake.nix @@ -1,7 +1,7 @@ { inputs = { nixpkgs.url = "github:NixOS/nixpkgs/nixos-unstable"; - wire.url = "github:wires-org/wire/v0.5.0"; + wire.url = "github:mrshmllow/wire/v0.5.0"; systems.url = "github:nix-systems/default"; }; diff --git a/doc/tutorial/part-one/repo-setup.md b/doc/tutorial/part-one/repo-setup.md index 554710e..995443e 100644 --- a/doc/tutorial/part-one/repo-setup.md +++ b/doc/tutorial/part-one/repo-setup.md @@ -39,12 +39,12 @@ This has created a pinned version of `nixpkgs` for us to use in our Wire hive. ## Adding wire as a dependency -We can now need to tell `npins` to use `wires-org/wire` as a dependency. +We can now need to tell `npins` to use `mrshmllow/wire` as a dependency. ```sh -[nix-shell]$ npins add github wires-org wire +[nix-shell]$ npins add github mrshmllow wire [INFO ] Adding 'wire' … - repository: https://github.com/wires-org/wire.git + repository: https://github.com/mrshmllow/wire.git pre_releases: false submodules: false version: v0.4.0 @@ -65,7 +65,7 @@ nixpkgs: (Nix channel) frozen: false wire: (git release tag) - repository: https://github.com/wires-org/wire.git + repository: https://github.com/mrshmllow/wire.git pre_releases: false submodules: false version: v0.4.0 diff --git a/wire/lib/src/hive/steps/keys.rs b/wire/lib/src/hive/steps/keys.rs index e475a58..4045bc9 100644 --- a/wire/lib/src/hive/steps/keys.rs +++ b/wire/lib/src/hive/steps/keys.rs @@ -304,7 +304,7 @@ impl ExecuteStep for PushKeyAgent { None => panic!( "{arg_name} environment variable not set! \n Wire was not built with the ability to deploy keys to this platform. \n - Please create an issue: https://github.com/wires-org/wire/issues/new?template=bug_report.md" + Please create an issue: https://github.com/mrshmllow/wire/issues/new?template=bug_report.md" ), }; -- 2.51.2