Missing $DRY_RUN_COMMAND
in activation script
This commit is contained in:
parent
39bc619beb
commit
196aabdceb
1 changed files with 2 additions and 2 deletions
|
@ -37,7 +37,7 @@
|
||||||
client.enable = false;
|
client.enable = false;
|
||||||
defaultEditor = false;
|
defaultEditor = false;
|
||||||
socketActivation.enable = false;
|
socketActivation.enable = false;
|
||||||
startWithUserSession = false;
|
startWithUserSession = false; # when I log out I don't want Emacs server to exit
|
||||||
};
|
};
|
||||||
home.packages = with pkgs;
|
home.packages = with pkgs;
|
||||||
[
|
[
|
||||||
|
@ -70,7 +70,7 @@
|
||||||
$DRY_RUN_CMD git clone \
|
$DRY_RUN_CMD git clone \
|
||||||
https://github.com/aciceri/emacs.git \
|
https://github.com/aciceri/emacs.git \
|
||||||
"$HOME/.config/emacs"
|
"$HOME/.config/emacs"
|
||||||
ln -s "$HOME/.config/emacs" "$HOME/emacs"
|
$DRY_RUN_CMD ln -s "$HOME/.config/emacs" "$HOME/emacs"
|
||||||
fi
|
fi
|
||||||
'';
|
'';
|
||||||
};
|
};
|
||||||
|
|
Reference in a new issue