54c16e3e63a85d20b0b2e2dc65bd06603276e4ea
## Changelog for org-mode: Commits: [emacs-straight/org-mode@220f2b0d...40474827](220f2b0d93...40474827ea
) * [`312a646f`](312a646fb8
) ob-python.el: Fix issue with sessions on remote machines * [`76da93aa`](76da93aa86
) org.el: Don't exclude local tags that are also inherited * [`7b657c50`](7b657c50e7
) org-clock.el: Fix calculated clocking sum in inlinetasks * [`40474827`](40474827ea
) org-num: Fix bug in check for commented headlines
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.
Description
Languages
Nix
64.3%
Emacs Lisp
35.7%