Update URLs in readme

This commit is contained in:
Tadeo Kondrak 2023-03-08 18:20:04 -07:00
parent a71e399df5
commit 9413472ea0

View file

@ -8,7 +8,7 @@ Add the repository to `~/.config/nixpkgs/overlays.nix`:
```nix ```nix
[ [
(import (builtins.fetchTarball "https://github.com/tadeokondrak/vs-overlay/archive/master.tar.gz")) (import (builtins.fetchTarball "https://github.com/nix-community/vs-overlay/archive/master.tar.gz"))
] ]
``` ```
@ -19,7 +19,7 @@ Add the repository to the `nixpkgs.overlays` option of `configuration.nix`:
```nix ```nix
{ {
nixpkgs.overlays = [ nixpkgs.overlays = [
(import (builtins.fetchTarball "https://github.com/tadeokondrak/vs-overlay/archive/master.tar.gz")) (import (builtins.fetchTarball "https://github.com/nix-community/vs-overlay/archive/master.tar.gz"))
]; ];
} }
``` ```
@ -37,7 +37,7 @@ In `flake.nix`, add `vs-overlay` as an input:
```nix ```nix
{ {
inputs.vs-overlay.url = "github:tadeokondrak/vs-overlay"; inputs.vs-overlay.url = "github:nix-community/vs-overlay";
} }
``` ```
@ -110,7 +110,7 @@ In `flake.nix`, add `vs-overlay` as an input:
```nix ```nix
{ {
inputs.vs-overlay.url = "github:tadeokondrak/vs-overlay"; inputs.vs-overlay.url = "github:nix-community/vs-overlay";
} }
``` ```