Created
October 16, 2017 02:28
-
-
Save dustinlacewell-wk/1499d1f836c99fede059ef8038ed6821 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, lib, ... }: | |
with lib; | |
with builtins; | |
let | |
dotlib = (import <dotlib>) { pkgs=pkgs; }; | |
gh_token = "de6f19c59fe7d8ae803d6ed646e21aea95e0d3c0"; | |
in { | |
programs.emacs = { | |
enable = true; | |
package = pkgs.emacs; | |
extraPackages = epkgs: [ | |
epkgs.badger-theme | |
]; | |
}; | |
home.file.".emacs.d/init.el".source = dotlib.emacs.buildOrg { | |
infile = ./init.org; }; | |
home.file.".emacs.d/init.html".source = dotlib.emacs.buildDocs { | |
infile = ./init.org; | |
ghpRemote = "https://dustinlacewell:${gh_token}@github.com/dustinlacewell/emacs.d.git"; }; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment