From 196aabdceb1d5f2c92adbe8b6c763e808f448e9d Mon Sep 17 00:00:00 2001 From: Andrea Ciceri Date: Thu, 16 Feb 2023 12:05:23 +0100 Subject: [PATCH] Missing `$DRY_RUN_COMMAND` in activation script --- hmModules/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/hmModules/default.nix b/hmModules/default.nix index a0421f2..e4e4061 100644 --- a/hmModules/default.nix +++ b/hmModules/default.nix @@ -37,7 +37,7 @@ client.enable = false; defaultEditor = false; socketActivation.enable = false; - startWithUserSession = false; + startWithUserSession = false; # when I log out I don't want Emacs server to exit }; home.packages = with pkgs; [ @@ -70,7 +70,7 @@ $DRY_RUN_CMD git clone \ https://github.com/aciceri/emacs.git \ "$HOME/.config/emacs" - ln -s "$HOME/.config/emacs" "$HOME/emacs" + $DRY_RUN_CMD ln -s "$HOME/.config/emacs" "$HOME/emacs" fi ''; };