mirror of
https://github.com/nix-community/home-manager
synced 2024-11-04 18:29:45 +01:00
README: Update README.md to point to new url (#1530)
home-manager moved to a community-based project.
This commit is contained in:
parent
abfb4cde51
commit
521a808151
1 changed files with 3 additions and 3 deletions
|
@ -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
|
2. Add the appropriate Home Manager channel. Typically this is
|
||||||
|
|
||||||
```console
|
```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
|
$ nix-channel --update
|
||||||
```
|
```
|
||||||
|
|
||||||
if you are following Nixpkgs master or an unstable channel and
|
if you are following Nixpkgs master or an unstable channel and
|
||||||
|
|
||||||
```console
|
```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
|
$ 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 = {
|
inputs = {
|
||||||
nixpkgs.url = "github:nixos/nixpkgs/nixos-unstable";
|
nixpkgs.url = "github:nixos/nixpkgs/nixos-unstable";
|
||||||
home-manager.url = "github:rycee/home-manager";
|
home-manager.url = "github:nix-community/home-manager";
|
||||||
};
|
};
|
||||||
|
|
||||||
outputs = inputs: {
|
outputs = inputs: {
|
||||||
|
|
Loading…
Reference in a new issue