1
0
mirror of https://github.com/nix-community/home-manager synced 2024-06-02 13:03:33 +02:00
home-manager/tests/modules/launchd/agents.nix
midchildan 2acea86583
launchd: make Launch Agents config a freeform setting
Because there probably are options we don't know about.
2023-03-25 23:59:58 +01:00

27 lines
634 B
Nix

{ config, lib, pkgs, ... }:
with lib;
{
config = {
launchd.agents."test-service" = {
enable = true;
config = {
ProgramArguments = [ "/some/command" "--with-arguments" "foo" ];
KeepAlive = {
Crashed = true;
SuccessfulExit = false;
};
ProcessType = "Background";
UnrecognizedByHomeManager = "should make it to the resulting plist";
};
};
nmt.script = ''
serviceFile=LaunchAgents/org.nix-community.home.test-service.plist
assertFileExists $serviceFile
assertFileContent $serviceFile ${./expected-agent.plist}
'';
};
}