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
2019-03-24 15:52:30 +01:00

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