Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/pages.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand Down
2 changes: 1 addition & 1 deletion crates/core/src/commands/common.rs
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ fn get_common_copy_path_help(error: &CommandError) -> Option<String> {
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
}
Expand Down
2 changes: 1 addition & 1 deletion doc/.vitepress/config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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",
Expand Down
2 changes: 1 addition & 1 deletion runtime/module/options.nix
Original file line number Diff line number Diff line change
Expand Up @@ -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 {
Expand Down