diff options
author | Griffin Smith <root@gws.fyi> | 2020-03-29T16·47-0400 |
---|---|---|
committer | Griffin Smith <root@gws.fyi> | 2020-03-29T16·47-0400 |
commit | 0fcb6d0ca3f8e37b72c55c8f20bfd85c3ebcb47d (patch) | |
tree | 20baa05baf30c3e54e5718b6200a188242b97026 /home/modules/emacs.nix | |
parent | 678c6b05d32dfc0ff470b886804f4f59a0abd7e6 (diff) |
Impurely clone .doom.d
Rather than having it there immutably. Makes it easier to hack on.
Diffstat (limited to 'home/modules/emacs.nix')
-rw-r--r-- | home/modules/emacs.nix | 11 |
1 files changed, 8 insertions, 3 deletions
diff --git a/home/modules/emacs.nix b/home/modules/emacs.nix index 05b09ec2c5d8..0487a2ef650a 100644 --- a/home/modules/emacs.nix +++ b/home/modules/emacs.nix @@ -21,7 +21,6 @@ in { ]; programs.emacs.enable = true; - home.file.".doom.d".source = ./doom.d; impure.clonedRepos = { orgClubhouse = { @@ -30,11 +29,17 @@ in { }; doomEmacs = { - github = "hlissner/org-clubhouse"; + github = "hlissner/doom-emacs"; path = ".emacs.d"; - after = ["orgClubhouse"]; + after = ["emacs.d"]; onClone = "bin/doom install"; }; + + "emacs.d" = { + github = "glittershark/emacs.d"; + path = ".doom.d"; + after = ["orgClubhouse"]; + }; }; # Notes |