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
|
|
@ -0,0 +1,28 @@
|
|||
{ lib, pkgs, ... }:
|
||||
|
||||
{
|
||||
services.emacs = {
|
||||
enable = true;
|
||||
socketActivation.enable = true;
|
||||
startWithUserSession = true;
|
||||
};
|
||||
|
||||
nixpkgs.overlays = [
|
||||
(self: super: rec {
|
||||
emacs = pkgs.writeShellScriptBin "dummy-emacs-28.0.5" "" // {
|
||||
outPath = "@emacs@";
|
||||
};
|
||||
emacsPackagesFor =
|
||||
_:
|
||||
lib.makeScope super.newScope (_: {
|
||||
emacsWithPackages = _: emacs;
|
||||
});
|
||||
})
|
||||
];
|
||||
|
||||
nmt.script = ''
|
||||
assertFileContains \
|
||||
home-files/.config/systemd/user/emacs.service \
|
||||
"WantedBy=default.target"
|
||||
'';
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue