aboutsummaryrefslogtreecommitdiff
path: root/README.md
diff options
context:
space:
mode:
authorMattia Gheda <ghedamat@gmail.com>2020-09-29 14:30:06 -0400
committerGitHub <noreply@github.com>2020-09-29 20:30:06 +0200
commit521a808151abccce34c3a9f55f4f331aa281e290 (patch)
tree0c56ff7b3460bc13b58fda7ec28e9dd0f04721b9 /README.md
parentabfb4cde51856dbee909f373b59cd941f51c2170 (diff)
README: Update README.md to point to new url (#1530)
home-manager moved to a community-based project.
Diffstat (limited to '')
-rw-r--r--README.md6
1 files changed, 3 insertions, 3 deletions
diff --git a/README.md b/README.md
index 5e538e8447ba..b7ab403eb025 100644
--- a/README.md
+++ b/README.md
@@ -64,14 +64,14 @@ Currently the easiest way to install Home Manager is as follows:
2. Add the appropriate Home Manager channel. Typically this is
```console
- $ nix-channel --add https://github.com/rycee/home-manager/archive/master.tar.gz home-manager
+ $ nix-channel --add https://github.com/nix-community/home-manager/archive/master.tar.gz home-manager
$ nix-channel --update
```
if you are following Nixpkgs master or an unstable channel and
```console
- $ nix-channel --add https://github.com/rycee/home-manager/archive/release-20.03.tar.gz home-manager
+ $ nix-channel --add https://github.com/nix-community/home-manager/archive/release-20.03.tar.gz home-manager
$ nix-channel --update
```
@@ -317,7 +317,7 @@ that wish to use it as a module. A bare-minimum flake.nix would be as follows:
inputs = {
nixpkgs.url = "github:nixos/nixpkgs/nixos-unstable";
- home-manager.url = "github:rycee/home-manager";
+ home-manager.url = "github:nix-community/home-manager";
};
outputs = inputs: {