Update README.md [skip ci]

This commit is contained in:
Thiago Kenji Okada
2022-07-07 21:51:24 +01:00
parent 3e7d2ab47d
commit b7cf7e506f

View File

@@ -106,11 +106,13 @@ Under the line:
in your configuration, you would add the following:
```Nix
{
emacsPackagesOverlay = self: super: {
magit-delta = super.magit-delta.overrideAttrs (esuper: {
buildInputs = esuper.buildInputs ++ [ pkgs.git ];
});
};
}
```
To make the git dependency available. trying to rebuild doom-emacs with
@@ -123,9 +125,11 @@ or `nix-darwin`) and use the doom emacs package. `doom-emacs` will need to be
referenced at the top of your config file.
```nix
services.emacs = {
enable = true;
package = doom-emacs; # use programs.emacs.package instead if using home-manager
{
services.emacs = {
enable = true;
package = doom-emacs; # use programs.emacs.package instead if using home-manager
};
}
```