Created
October 26, 2017 03:31
-
-
Save dustinlacewell-wk/b460eb36fa948eb313cf777627afd36b to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| { pkgs, ... }: | |
| let | |
| plugins = import <plugins>; | |
| in { | |
| imports = [ | |
| plugins.org-build | |
| ]; | |
| # ensure that emacs gets installed | |
| programs.emacs = { enable = true; }; | |
| # compile init.el from init.org | |
| home.file.".emacs.d/init.el".source = pkgs.org-build { source = ./init.org; }; | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment