mirror of
https://github.com/LnL7/nix-darwin.git
synced 2024-12-15 17:51:01 +00:00
11 lines
192 B
Nix
11 lines
192 B
Nix
|
{ config, pkgs, ... }:
|
||
|
|
||
|
{
|
||
|
launchd.envVariables.FOO = "42";
|
||
|
|
||
|
test = ''
|
||
|
echo checking launchd setenv in /activate >&2
|
||
|
grep "launchctl setenv FOO '42'" ${config.out}/activate
|
||
|
'';
|
||
|
}
|