1
0
mirror of https://github.com/nix-community/home-manager synced 2024-07-03 03:48:31 +02:00
home-manager/tests/modules/services/sxhkd/service.nix
2020-04-10 01:01:20 +02:00

21 lines
457 B
Nix

{ config, ... }:
{
config = {
services.sxhkd = {
enable = true;
extraPath = "/home/the-user/bin:/extra/path/bin";
};
nmt.script = ''
serviceFile=home-files/.config/systemd/user/sxhkd.service
assertFileExists $serviceFile
assertFileRegex $serviceFile 'ExecStart=.*/bin/sxhkd'
assertFileRegex $serviceFile \
'Environment=PATH=.*\.nix-profile/bin:/home/the-user/bin:/extra/path/bin'
'';
};
}