1
0
mirror of https://github.com/nix-community/home-manager synced 2024-06-28 17:38:33 +02:00
home-manager/tests/modules/services/fnott/systemd-user-service.nix
Christoph Heiss 3895469036
fnott: add D-Bus service file
This is needed to make fnott bus-activatable. Otherwise it won't be
started when a bus request is made [0]. Done in the same way as e.g.
dunst sets that up [1,2].

[0] https://www.freedesktop.org/software/systemd/man/systemd.service.html#id-1.10.6
[1] https://github.com/nix-community/home-manager/blob/master/modules/services/dunst.nix#L139
[2] https://github.com/dunst-project/dunst/blob/master/org.knopwob.dunst.service.in
2023-04-22 16:49:26 +02:00

21 lines
483 B
Nix

{ config, lib, pkgs, ... }:
{
config = {
services.fnott = {
enable = true;
package = config.lib.test.mkStubPackage { outPath = "@fnott@"; };
};
nmt.script = ''
assertFileContent \
home-files/.config/systemd/user/fnott.service \
${./systemd-user-service-expected.service}
assertFileContent \
home-files/.local/share/dbus-1/services/fnott.service \
${./systemd-user-dbus-service-expected.service}
'';
};
}