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 = {
|
2020-10-25 22:39:02 +01:00
|
|
|
Environment = [ "VAR1=1" "VAR2=2" ];
|
2019-03-24 15:52:30 +01:00
|
|
|
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
|
2020-10-25 22:39:02 +01:00
|
|
|
assertFileContent $serviceFile \
|
|
|
|
${builtins.toFile "services-expected.conf" ''
|
|
|
|
[Service]
|
|
|
|
Environment=VAR1=1
|
|
|
|
Environment=VAR2=2
|
|
|
|
ExecStart=/some/exec/start/command --with-arguments "%i"
|
|
|
|
|
|
|
|
[Unit]
|
|
|
|
Description=A basic test service
|
|
|
|
''}
|
2019-03-24 15:52:30 +01:00
|
|
|
'';
|
|
|
|
};
|
|
|
|
}
|