1
0
mirror of https://github.com/nix-community/home-manager synced 2024-07-02 19:38:32 +02:00
home-manager/tests/modules/systemd/services.nix

38 lines
936 B
Nix
Raw Normal View History

{ pkgs, ... }:
2019-03-24 15:52:30 +01:00
let
drvScript = pkgs.writeShellScript "drv-script.sh" ''
echo "Just a test"
'';
in {
2019-03-24 15:52:30 +01:00
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" ];
ExecStartPre = drvScript;
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
${
pkgs.writeText "services-expected.conf" ''
2021-07-18 23:34:50 +02:00
[Service]
Environment=VAR1=1
Environment=VAR2=2
ExecStart=/some/exec/start/command --with-arguments "%i"
ExecStartPre=${drvScript}
2021-07-18 23:34:50 +02:00
[Unit]
Description=A basic test service
''
}
2019-03-24 15:52:30 +01:00
'';
};
}