2019-03-24 15:52:30 +01:00
|
|
|
{ config, lib, pkgs, ... }:
|
|
|
|
|
|
|
|
with lib;
|
|
|
|
|
|
|
|
{
|
|
|
|
config = {
|
|
|
|
systemd.user.services."test-service@" = {
|
|
|
|
Unit = {
|
|
|
|
Description = "A basic test service";
|
|
|
|
};
|
|
|
|
|
|
|
|
Service = {
|
|
|
|
ExecStart = ''/some/exec/start/command --with-arguments "%i"'';
|
|
|
|
};
|
|
|
|
};
|
|
|
|
|
|
|
|
nmt.script = ''
|
2020-04-10 00:25:21 +02:00
|
|
|
serviceFile=home-files/.config/systemd/user/test-service@.service
|
2019-03-24 15:52:30 +01:00
|
|
|
assertFileExists $serviceFile
|
|
|
|
assertFileContent $serviceFile ${./services-expected.conf}
|
|
|
|
'';
|
|
|
|
};
|
|
|
|
}
|