Skip to content

Instantly share code, notes, and snippets.

@dustinlacewell-wk
Created October 26, 2017 03:31
Show Gist options
  • Select an option

  • Save dustinlacewell-wk/b460eb36fa948eb313cf777627afd36b to your computer and use it in GitHub Desktop.

Select an option

Save dustinlacewell-wk/b460eb36fa948eb313cf777627afd36b to your computer and use it in GitHub Desktop.
{ 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