mirror of
https://github.com/nix-community/home-manager.git
synced 2025-12-10 19:11:06 +01:00
tests: various minor cleanups
This commit is contained in:
parent
19c509a6fa
commit
eec2272999
41 changed files with 680 additions and 747 deletions
|
|
@ -1,10 +1,6 @@
|
|||
{ config, lib, pkgs, ... }:
|
||||
{ lib, pkgs, ... }:
|
||||
|
||||
with lib;
|
||||
|
||||
let
|
||||
|
||||
in {
|
||||
{
|
||||
config = {
|
||||
nixpkgs.overlays = [
|
||||
(self: super: rec {
|
||||
|
|
@ -12,7 +8,7 @@ in {
|
|||
outPath = "@emacs@";
|
||||
};
|
||||
emacsPackagesFor = _:
|
||||
makeScope super.newScope (_: { emacsWithPackages = _: emacs; });
|
||||
lib.makeScope super.newScope (_: { emacsWithPackages = _: emacs; });
|
||||
})
|
||||
];
|
||||
|
||||
|
|
@ -27,17 +23,22 @@ in {
|
|||
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.substituteAll {
|
||||
inherit (pkgs) runtimeShell coreutils;
|
||||
src = ./emacs-socket-emacs.service;
|
||||
}
|
||||
}
|
||||
assertFileContent home-path/share/applications/emacsclient.desktop \
|
||||
${./emacs-28-emacsclient.desktop}
|
||||
assertFileContent \
|
||||
home-files/.config/systemd/user/emacs.socket \
|
||||
${./emacs-socket-emacs.socket}
|
||||
|
||||
assertFileContent \
|
||||
home-files/.config/systemd/user/emacs.service \
|
||||
${
|
||||
pkgs.substituteAll {
|
||||
inherit (pkgs) runtimeShell coreutils;
|
||||
src = ./emacs-socket-emacs.service;
|
||||
}
|
||||
}
|
||||
|
||||
assertFileContent \
|
||||
home-path/share/applications/emacsclient.desktop \
|
||||
${./emacs-28-emacsclient.desktop}
|
||||
'';
|
||||
};
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue