mirror of
https://github.com/nix-community/home-manager.git
synced 2025-12-04 16:11:06 +01:00
tests/emacs: reorganize darwin and linux
Signed-off-by: Austin Horstman <khaneliman12@gmail.com>
This commit is contained in:
parent
e9bde7692e
commit
c283a23ef6
21 changed files with 14 additions and 15 deletions
22
tests/modules/services/emacs/linux/emacs-default-editor.nix
Normal file
22
tests/modules/services/emacs/linux/emacs-default-editor.nix
Normal file
|
|
@ -0,0 +1,22 @@
|
|||
{ 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;
|
||||
}
|
||||
}";
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue