mirror of
https://github.com/nix-community/home-manager.git
synced 2025-11-08 19:46:05 +01:00
22 lines
462 B
Nix
22 lines
462 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.replaceVars ./emacs-default-editor.sh {
|
|
inherit (pkgs) coreutils;
|
|
}
|
|
}";
|
|
}
|