diff --git a/.github/workflows/pages.yml b/.github/workflows/pages.yml index 6d56ef7..e28ae3f 100644 --- a/.github/workflows/pages.yml +++ b/.github/workflows/pages.yml @@ -21,7 +21,7 @@ jobs: permissions: {} environment: name: production - url: https://wire.althaea.zone/ + url: https://wire.forall.systems/ if: github.actor != 'dependabot[bot]' && needs.pre-job.outputs.should_skip != 'true' steps: - uses: actions/checkout@8e8c483db84b4bee98b60c0593521ed34d9990e8 diff --git a/CHANGELOG.md b/CHANGELOG.md index 3316ff0..4f53b03 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -11,6 +11,11 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 - Manpages for `1` & `5`, including subcommands. +### Changed + +- The domain for documentation to be `wire.forall.systems`. The previous URL + will continue to be available but may redirect in the future. + ### Fixed - Fix a bug where key permissions where being printed in decimal format instead diff --git a/README.md b/README.md index dcf2576..2889954 100644 --- a/README.md +++ b/README.md @@ -4,7 +4,7 @@ wire is a tool to deploy nixos systems. its usage is inspired by colmena however it is not a fork. -Read the [The Tutorial](https://wire.althaea.zone/tutorial/overview.html), [Guides](https://wire.althaea.zone/guides/installation.html), or continue reading this readme for development information. +Read the [The Tutorial](https://wire.forall.systems/tutorial/overview.html), [Guides](https://wire.forall.systems/guides/installation.html), or continue reading this readme for development information. ## Development diff --git a/crates/core/src/commands/common.rs b/crates/core/src/commands/common.rs index ab31e49..89f5cc8 100644 --- a/crates/core/src/commands/common.rs +++ b/crates/core/src/commands/common.rs @@ -22,7 +22,7 @@ fn get_common_copy_path_help(error: &CommandError) -> Option { if let CommandError::CommandFailed { logs, .. } = error && (logs.contains("error: unexpected end-of-file")) { - Some("wire requires the deploying user or wire binary cache is trusted on the remote server. if you're attempting to make that change, skip keys with --no-keys. please read https://wire.althaea.zone/guides/keys for more information".to_string()) + Some("wire requires the deploying user or wire binary cache is trusted on the remote server. if you're attempting to make that change, skip keys with --no-keys. please read https://wire.forall.systems/guides/keys for more information".to_string()) } else { None } diff --git a/doc/.vitepress/config.ts b/doc/.vitepress/config.ts index 44cb92e..005098b 100644 --- a/doc/.vitepress/config.ts +++ b/doc/.vitepress/config.ts @@ -36,7 +36,7 @@ export default defineConfig({ MODE === "unstable" ? { text: `View Stable`, - link: "https://wire.althaea.zone", + link: "https://wire.forall.systems", } : { text: "View Unstable", diff --git a/runtime/module/options.nix b/runtime/module/options.nix index ff4fca6..602aa65 100644 --- a/runtime/module/options.nix +++ b/runtime/module/options.nix @@ -36,7 +36,7 @@ in user = lib.mkOption { type = types.str; description = "User to use for SSH. The user must be atleast `wheel` and must use an SSH key or similar - non-interactive login method. More information can be found at https://wire.althaea.zone/guides/non-root-user"; + non-interactive login method. More information can be found at https://wire.forall.systems/guides/non-root-user"; default = "root"; }; port = lib.mkOption {