From 5f89fd2ff2f3e27dfe8cbc9b801f0176e007ff3a Mon Sep 17 00:00:00 2001 From: Sebastian Schulze Date: Tue, 14 Nov 2023 13:27:42 +0100 Subject: [PATCH] [nix] Use paths to the actual emacs 29 pgtk from the overlay --- dot_config/nixos/home.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/dot_config/nixos/home.nix b/dot_config/nixos/home.nix index 334fa03..a771b2e 100644 --- a/dot_config/nixos/home.nix +++ b/dot_config/nixos/home.nix @@ -519,7 +519,7 @@ in X-RestartIfChanged = "false"; }; Service = { - ExecStart = "${pkgs.bash}/bin/bash -l -c '~/.nix-profile/bin/emacs --fg-daemon=comacs'"; + ExecStart = "${pkgs.bash}/bin/bash -l -c '${pkgs.emacs29-pgtk}/bin/emacs --fg-daemon=comacs'"; Restart = "on-failure"; SuccessExitStatus = 15; Type = "notify"; @@ -536,7 +536,7 @@ in X-RestartIfChanged = "false"; }; Service = { - ExecStart = "${pkgs.bash}/bin/bash -l -c '~/.nix-profile/bin/emacs --name Worklog --fg-daemon=workmacs'"; + ExecStart = "${pkgs.bash}/bin/bash -l -c '${pkgs.emacs29-pgtk}/bin/emacs --name Worklog --fg-daemon=workmacs'"; Restart = "on-failure"; SuccessExitStatus = 15; Type = "notify";