1
0
mirror of https://github.com/nix-community/home-manager synced 2024-07-06 21:33:28 +02:00
home-manager/tests/modules/services/emacs/emacs-default-editor.nix
2023-05-13 00:09:52 +02:00

25 lines
495 B
Nix

{ pkgs, ... }:
{
nixpkgs.overlays = [
(self: super: {
# Use `cat` instead of `echo` to prevent arguments from being
# interpreted as an option.
emacs = pkgs.writeShellScriptBin "emacsclient"
''${pkgs.coreutils}/bin/cat <<< "$*"'';
})
];
services.emacs = {
defaultEditor = true;
enable = true;
};
nmt.script = "source ${
pkgs.substituteAll {
inherit (pkgs) coreutils;
src = ./emacs-default-editor.sh;
}
}";
}