pinwheel: Add ec to emacs module to start daemon

This commit is contained in:
Alexander Heldt
2023-11-05 20:35:26 +01:00
parent 0cfe8c0351
commit 8908bbebab

View File

@@ -14,6 +14,9 @@ let
${emacs}/bin/emacs -nw
'';
ec = pkgs.writeShellScriptBin "ec" ''
${emacs}/bin/emacsclient -t -c -a=
'';
in
{
nixpkgs.overlays = [ inputs.emacs-overlay.overlay ];
@@ -26,6 +29,7 @@ in
home.packages = [
e
ec
emacs
pkgs.wl-clipboard
];