diff --git a/README.md b/README.md index a4b66f2..3146ae0 100644 --- a/README.md +++ b/README.md @@ -2,9 +2,9 @@ | | Status | | --- | --- | -| Build on `master` | [![Build Status on master](https://github.com/vlaci/nix-doom-emacs/workflows/Check%20Build/badge.svg?branch=master&event=push)](https://github.com/vlaci/nix-doom-emacs/actions?query=workflow%3ACheck%20Build+branch%3Amaster+event%3Apush) | -| Build on `develop` | [![Build Status on develop](https://github.com/vlaci/nix-doom-emacs/workflows/Check%20Build/badge.svg?branch=develop&event=push)](https://github.com/vlaci/nix-doom-emacs/actions?query=workflow%3ACheck%20Build+branch%3Adevelop+event%3Apush) | -| Dependency updater | [![Dependency Updater Status](https://github.com/vlaci/nix-doom-emacs/workflows/Update%20Dependencies/badge.svg?branch=master)](https://github.com/vlaci/nix-doom-emacs/actions?query=workflow%3AUpdate%20Dependencies+branch%3Amaster+event%3Apush) | +| Build on `master` | [![Build Status on master](https://github.com/nix-community/nix-doom-emacs/workflows/Check%20Build/badge.svg?branch=master&event=push)](https://github.com/nix-community/nix-doom-emacs/actions?query=workflow%3ACheck%20Build+branch%3Amaster+event%3Apush) | +| Build on `develop` | [![Build Status on develop](https://github.com/nix-community/nix-doom-emacs/workflows/Check%20Build/badge.svg?branch=develop&event=push)](https://github.com/nix-community/nix-doom-emacs/actions?query=workflow%3ACheck%20Build+branch%3Adevelop+event%3Apush) | +| Dependency updater | [![Dependency Updater Status](https://github.com/nix-community/nix-doom-emacs/workflows/Update%20Dependencies/badge.svg?branch=master)](https://github.com/nix-community/nix-doom-emacs/actions?query=workflow%3AUpdate%20Dependencies+branch%3Amaster+event%3Apush) | Nix expression to install and configure [doom-emacs](https://github.com/hlissner/doom-emacs). @@ -26,7 +26,7 @@ Using [home-manager](https://github.com/rycee/home-manager): let doom-emacs = pkgs.callPackage (builtins.fetchTarball { - url = https://github.com/vlaci/nix-doom-emacs/archive/master.tar.gz; + url = https://github.com/nix-community/nix-doom-emacs/archive/master.tar.gz; }) { doomPrivateDir = ./doom.d; # Directory containing your config.el init.el # and packages.el files @@ -46,7 +46,7 @@ Using `flake.nix`: { inputs = { home-manager.url = "github:rycee/home-manager"; - nix-doom-emacs.url = "github:vlaci/nix-doom-emacs"; + nix-doom-emacs.url = "github:nix-community/nix-doom-emacs"; }; outputs = { @@ -78,7 +78,7 @@ Using `flake.nix`: ## Under the hood This expression leverages -[nix-straight.el](https://github.com/vlaci/nix-straight.el) under the hood for +[nix-straight.el](https://github.com/nix-community/nix-straight.el) under the hood for installing dependencies. The restrictions of that package apply here too. ## Usage diff --git a/flake.nix b/flake.nix index f011d03..8d259df 100644 --- a/flake.nix +++ b/flake.nix @@ -3,7 +3,7 @@ { inputs = { home-manager.url = "github:rycee/home-manager"; - nix-doom-emacs.url = "github:vlaci/nix-doom-emacs/flake"; + nix-doom-emacs.url = "github:nix-community/nix-doom-emacs/flake"; }; outputs = {