1
0
mirror of https://github.com/nix-community/home-manager synced 2024-07-04 20:33:27 +02:00
home-manager/tests/modules/services/sxhkd/service.nix

27 lines
578 B
Nix
Raw Normal View History

{ config, pkgs, ... }:
2019-09-15 23:12:08 +02:00
{
xsession = {
enable = true;
windowManager.command = "";
};
services.sxhkd = {
enable = true;
package = config.lib.test.mkStubPackage { outPath = "@sxhkd@"; };
extraOptions = [ "-m 1" ];
};
2019-09-15 23:12:08 +02:00
nmt.script = ''
xsessionFile=home-files/.xsession
2019-09-15 23:12:08 +02:00
assertFileExists $xsessionFile
2019-09-15 23:12:08 +02:00
assertFileContains $xsessionFile \
'systemctl --user stop sxhkd.scope 2> /dev/null || true'
assertFileContains $xsessionFile \
'systemd-cat -t sxhkd systemd-run --user --scope -u sxhkd @sxhkd@/bin/sxhkd -m 1 &'
'';
2019-09-15 23:12:08 +02:00
}