update references: vlaci → nix-community

This commit is contained in:
ckie
2021-12-10 15:13:01 +02:00
parent 29688ccca5
commit 0cb69d4c20
2 changed files with 7 additions and 7 deletions

View File

@ -2,9 +2,9 @@
| | Status | | | 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 `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/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) | | 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/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) | | 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 Nix expression to install and configure
[doom-emacs](https://github.com/hlissner/doom-emacs). [doom-emacs](https://github.com/hlissner/doom-emacs).
@ -26,7 +26,7 @@ Using [home-manager](https://github.com/rycee/home-manager):
let let
doom-emacs = pkgs.callPackage (builtins.fetchTarball { 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 doomPrivateDir = ./doom.d; # Directory containing your config.el init.el
# and packages.el files # and packages.el files
@ -46,7 +46,7 @@ Using `flake.nix`:
{ {
inputs = { inputs = {
home-manager.url = "github:rycee/home-manager"; 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 = { outputs = {
@ -78,7 +78,7 @@ Using `flake.nix`:
## Under the hood ## Under the hood
This expression leverages 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. installing dependencies. The restrictions of that package apply here too.
## Usage ## Usage

View File

@ -3,7 +3,7 @@
{ {
inputs = { inputs = {
home-manager.url = "github:rycee/home-manager"; 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 = { outputs = {