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
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ the flake outputs.

```sh
nix shell nixpkgs#nh # stable
nix shell github:viperML/nh # dev
nix shell github:nix-community/nh # dev
```

### NixOS
Expand Down Expand Up @@ -119,7 +119,7 @@ The config would look like this:

## 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/nix-community/nh/status.svg)](https://deps.rs/repo/github/nix-community/nh)

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

Expand Down
2 changes: 1 addition & 1 deletion package.nix
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@ rustPlatform.buildRustPackage {

meta = {
description = "Yet another nix cli helper";
homepage = "https://github.com/viperML/nh";
homepage = "https://github.com/nix-community/nh";
license = lib.licenses.eupl12;
mainProgram = "nh";
maintainers = with lib.maintainers; [
Expand Down
2 changes: 1 addition & 1 deletion src/logging.rs
Original file line number Diff line number Diff line change
Expand Up @@ -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/nix-community/nh/issues")
.display_env_section(false)
.install()?;

Expand Down