1
0
mirror of https://github.com/nix-community/home-manager synced 2024-06-29 09:58:32 +02:00
home-manager/tests/modules/systemd/services.nix

34 lines
798 B
Nix
Raw Normal View History

2019-03-24 15:52:30 +01:00
{ config, lib, pkgs, ... }:
with lib;
{
config = {
systemd.user.services."test-service@" = {
2021-07-18 23:34:50 +02:00
Unit = { Description = "A basic test service"; };
2019-03-24 15:52:30 +01:00
Service = {
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
assertFileContent $serviceFile \
2021-07-18 23:34:50 +02:00
${
builtins.toFile "services-expected.conf" ''
[Service]
Environment=VAR1=1
Environment=VAR2=2
ExecStart=/some/exec/start/command --with-arguments "%i"
2021-07-18 23:34:50 +02:00
[Unit]
Description=A basic test service
''
}
2019-03-24 15:52:30 +01:00
'';
};
}