mirror of
https://github.com/nix-community/home-manager.git
synced 2025-12-02 23:21:02 +01:00
55 lines
1.4 KiB
Nix
55 lines
1.4 KiB
Nix
{ lib, pkgs, ... }:
|
|
|
|
{
|
|
config = {
|
|
nixpkgs.overlays = [
|
|
(self: super: rec {
|
|
emacs = pkgs.writeShellScriptBin "dummy-emacs-27.2" "" // {
|
|
outPath = "@emacs@";
|
|
};
|
|
emacsPackagesFor =
|
|
_:
|
|
lib.makeScope super.newScope (_: {
|
|
emacsWithPackages = _: emacs;
|
|
});
|
|
})
|
|
];
|
|
|
|
programs.emacs.enable = true;
|
|
services.emacs.enable = true;
|
|
services.emacs.client.enable = true;
|
|
services.emacs.extraOptions = [
|
|
"-f"
|
|
"exwm-enable"
|
|
];
|
|
services.emacs.socketActivation.enable = true;
|
|
|
|
nmt.script = ''
|
|
assertFileExists home-files/.config/systemd/user/emacs.socket
|
|
assertFileExists home-files/.config/systemd/user/emacs.service
|
|
assertFileExists home-path/share/applications/emacsclient.desktop
|
|
|
|
assertFileContent \
|
|
home-files/.config/systemd/user/emacs.socket \
|
|
${./emacs-socket-emacs.socket}
|
|
|
|
assertFileContent \
|
|
home-files/.config/systemd/user/emacs.service \
|
|
${pkgs.substitute {
|
|
src = ./emacs-socket-27-emacs.service;
|
|
substitutions = [
|
|
"--replace"
|
|
"@runtimeShell@"
|
|
pkgs.runtimeShell
|
|
"--replace"
|
|
"@coreutils@"
|
|
pkgs.coreutils
|
|
];
|
|
}}
|
|
|
|
assertFileContent \
|
|
home-path/share/applications/emacsclient.desktop \
|
|
${./emacs-27-emacsclient.desktop}
|
|
'';
|
|
};
|
|
}
|