Skip to content

Commit c796b46

Browse files
authored
Merge pull request #271 from bloxx12/fix-names
chore: fix links
2 parents 3211675 + 872bda8 commit c796b46

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ the flake outputs.
4545

4646
```sh
4747
nix shell nixpkgs#nh # stable
48-
nix shell github:viperML/nh # dev
48+
nix shell github:nix-community/nh # dev
4949
```
5050

5151
### NixOS
@@ -119,7 +119,7 @@ The config would look like this:
119119

120120
## Status
121121

122-
[![Dependency status](https://deps.rs/repo/github/viperML/nh/status.svg)](https://deps.rs/repo/github/viperML/nh)
122+
[![Dependency status](https://deps.rs/repo/github/nix-community/nh/status.svg)](https://deps.rs/repo/github/nix-community/nh)
123123

124124
[![Packaging status](https://repology.org/badge/vertical-allrepos/nh.svg)](https://repology.org/project/unit/versions)
125125

package.nix

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,7 @@ rustPlatform.buildRustPackage {
6161

6262
meta = {
6363
description = "Yet another nix cli helper";
64-
homepage = "https://github.com/viperML/nh";
64+
homepage = "https://github.com/nix-community/nh";
6565
license = lib.licenses.eupl12;
6666
mainProgram = "nh";
6767
maintainers = with lib.maintainers; [

src/logging.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@ where
5555
pub(crate) fn setup_logging(verbose: bool) -> Result<()> {
5656
color_eyre::config::HookBuilder::default()
5757
.display_location_section(true)
58-
.panic_section("Please report the bug at https://github.com/viperML/nh/issues")
58+
.panic_section("Please report the bug at https://github.com/nix-community/nh/issues")
5959
.display_env_section(false)
6060
.install()?;
6161

0 commit comments

Comments
 (0)