mirror of
https://github.com/nix-community/home-manager
synced 2024-11-01 08:49:44 +01:00
24 lines
495 B
Nix
24 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;
|
|
}
|
|
}";
|
|
}
|