mirror of
https://github.com/nix-community/nix-doom-emacs
synced 2025-08-15 13:23:44 -05:00
0b8e14d0a67c545bd0c4904373bdebf3e8209b33
## Changelog for org-mode: Commits: [emacs-straight/org-mode@ea946353...5417e384](ea946353aa...5417e384eb
) * [`81e29484`](81e2948472
) Fix org-fontify-whole-*-line by setting face extension (bugemacs-straight/org-mode#42184) * [`ab9b14a8`](ab9b14a80f
) org.el: (org-get-cursor-date): Fix regular expression
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
doom-emacs = pkgs.callPackage (builtins.fetchTarball {
url = https://github.com/vlaci/nix-doom-emacs/archive/master.tar.gz;
}) {
doomPrivateDir = ./doom.d; # Directory containing your config.el init.el
# and packages.el files
};
in {
home.packages = [ doom-emacs ];
home.file.".emacs.d/init.el".text = ''
(load "default.el")
'';
}
Under the hood
This expression leverages nix-straight.el under the hood for installing depdendencies. The restrictions of that package apply here too.
Languages
Nix
64.3%
Emacs Lisp
35.7%