1
0
mirror of https://github.com/nix-community/home-manager synced 2024-07-03 11:53:27 +02:00
home-manager/tests/modules/systemd/services.nix
2020-04-10 01:01:20 +02:00

24 lines
487 B
Nix

{ 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 = ''
serviceFile=home-files/.config/systemd/user/test-service@.service
assertFileExists $serviceFile
assertFileContent $serviceFile ${./services-expected.conf}
'';
};
}