bdbf14a95b91d6936ff9aa3681b1fe5da0912abe
nix-doom-emacs
Nix expression to install and configure doom-emacs.
The expression builds a doom-emacs
distribution with dependencies
pre-installed based on an existing ~/.doom.d
directory.
It is not a fully fledged exprerience as some dependenices are not installed and
some may not be fully compatible as the version available in NixOS or
emacs-overlay may not be
compatible with the doom-emacs
requirements.
Getting started
Using home-manager:
{ pkgs, ... }:
let
doomPrivateDir = ./doom.d;
doom-emacs = pkgs.callPackage (builtins.fetchTarball {
url = https://github.com/vlaci/nix-doom-emacs/archive/master.tar.gz;
}) { inherit doomPrivateDir; };
in {
home.packages = [ doom-emacs ];
home.file.".doom.d".source = doomPrivateDir;
home.file.".emacs.d".source = doom-emacs.emacsd;
}
Under the hood
This expression leverages nix-straight.el under the hood for installing depdendencies. The restrictions of that package apply here too.
Description
Languages
Nix
64.3%
Emacs Lisp
35.7%