diff --git a/README.md b/README.md
index 52cc9e0..4c77ba5 100644
--- a/README.md
+++ b/README.md
@@ -1,4 +1,4 @@
-
nh
+nh_plus
Because the name "yet-another-nix-helper" was too long to type...
@@ -38,7 +38,7 @@ latest development version of nh.
```
nix shell nixpkgs#nh # stable
-nix shell github:viperML/nh # dev
+nix shell github:toyvo/nh_plus # dev
```
@@ -91,7 +91,7 @@ To do so, you need to give nh some information of the spec that is currently run
# Status
-[![Dependency status](https://deps.rs/repo/github/viperML/nh/status.svg)](https://deps.rs/repo/github/viperML/nh)
+[![Dependency status](https://deps.rs/repo/github/toyvo/nh_plus/status.svg)](https://deps.rs/repo/github/toyvo/nh_plus)
[![Packaging status](https://repology.org/badge/vertical-allrepos/nh.svg)](https://repology.org/project/unit/versions)
diff --git a/package.nix b/package.nix
index 68ad8af..96433de 100644
--- a/package.nix
+++ b/package.nix
@@ -61,7 +61,7 @@ rustPlatform.buildRustPackage {
meta = {
description = "Yet another nix cli helper";
- homepage = "https://github.com/viperML/nh";
+ homepage = "https://github.com/toyvo/nh_plus";
license = lib.licenses.eupl12;
mainProgram = "nh";
maintainers = with lib.maintainers; [
diff --git a/src/logging.rs b/src/logging.rs
index bebaa30..7d86d44 100644
--- a/src/logging.rs
+++ b/src/logging.rs
@@ -55,7 +55,7 @@ where
pub(crate) fn setup_logging(verbose: bool) -> Result<()> {
color_eyre::config::HookBuilder::default()
.display_location_section(true)
- .panic_section("Please report the bug at https://github.com/viperML/nh/issues")
+ .panic_section("Please report the bug at https://github.com/toyvo/nh_plus/issues")
.display_env_section(false)
.install()?;