mirror of
https://github.com/nix-community/home-manager
synced 2024-11-01 00:39:45 +01:00
54b69d2ef8
Emacs populates 'exec-path' at launch from the 'PATH' environment variable. Likewise, the emacs derivation from nixpkgs populates 'load-path' from the 'NIX_PROFILES' variable. As neither of these are available by default in the systemd user manager, revert to the previous behavior of launching the Emacs daemon from a login shell. Fixes #1354 Fixes #1340 PR #1355
37 lines
1.1 KiB
Nix
37 lines
1.1 KiB
Nix
{ config, lib, pkgs, ... }:
|
|
|
|
with lib;
|
|
|
|
{
|
|
config = {
|
|
nixpkgs.overlays = [
|
|
(self: super: rec {
|
|
emacs = pkgs.writeShellScriptBin "dummy-emacs" "" // {
|
|
outPath = "@emacs@";
|
|
};
|
|
emacsPackagesFor = _:
|
|
makeScope super.newScope (_: { emacsWithPackages = _: emacs; });
|
|
})
|
|
];
|
|
|
|
programs.emacs.enable = true;
|
|
services.emacs.enable = true;
|
|
services.emacs.client.enable = true;
|
|
|
|
nmt.script = ''
|
|
assertPathNotExists 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.service \
|
|
${
|
|
pkgs.substituteAll {
|
|
inherit (pkgs) runtimeShell;
|
|
src = ./emacs-service-emacs.service;
|
|
}
|
|
}
|
|
assertFileContent home-path/share/applications/emacsclient.desktop \
|
|
${./emacs-emacsclient.desktop}
|
|
'';
|
|
};
|
|
}
|