🐃 manage doom with nix

This commit is contained in:
James Walker 2021-03-06 20:48:41 -05:00
parent 7a600de8f8
commit 711bf1f8a1
Signed by: walkah
GPG Key ID: 3C127179D6086E93

View File

@ -39,6 +39,19 @@
wakatime wakatime
]; ];
home.file.".doom.d" = {
onChange = ''
#!/bin/sh
DOOM=$HOME/.emacs.d
if [ ! -d $DOOM ]; then
git clone --depth 1 https://github.com/hlissner/doom-emacs $DOOM
fi
$DOOM/bin/doom sync
'';
source = ./config/.doom.d;
recursive = true;
};
programs = { programs = {
zsh = { zsh = {
enable = true; enable = true;