github-actions[bot] 5fee13898a niv org-mode: update a1e5bee5 -> ea946353
## Changelog for org-mode:
Commits: [emacs-straight/org-mode@a1e5bee5...ea946353](a1e5bee5cb...ea946353aa)

* [`b395f0ab`](b395f0abf6) ol.el: Fixed typo
* [`df5a8363`](df5a836375) ob-core: Call org-confirm-babel-evaluate with expanded noweb refs
* [`093b474e`](093b474e6a) org-list: Operate on single line if no active region
* [`ea946353`](ea946353aa) ob-core: file-mode option in source code block arguments
2020-08-10 14:34:42 +02:00
2019-10-23 13:25:43 +02:00

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
doom-emacs packaged for Nix [maintainers=@ckiee,@thiagokokada]
Readme MIT 3.3 MiB
Languages
Nix 64.3%
Emacs Lisp 35.7%