1
0
Fork 0
mirror of https://github.com/nix-community/home-manager.git synced 2025-12-09 10:31:06 +01:00
home-manager/tests/modules/services/emacs/emacs-service-28-after-graphical-session-target.nix
Austin Horstman cba2f9ce95 treewide: reformat nixfmt-rfc-style
Reformat repository using new nixfmt-rfc-style.
2025-04-08 08:50:05 -07:00

42 lines
1.1 KiB
Nix

{ lib, pkgs, ... }:
{
nixpkgs.overlays = [
(self: super: rec {
emacs = pkgs.writeShellScriptBin "dummy-emacs-28.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.startWithUserSession = "graphical";
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-after-graphical-session-target.service;
}}
assertFileContent \
home-path/share/applications/emacsclient.desktop \
${./emacs-28-emacsclient.desktop}
'';
}