mirror of
https://github.com/LnL7/nix-darwin.git
synced 2024-12-14 11:57:34 +00:00
11 lines
225 B
Nix
11 lines
225 B
Nix
|
{ config, pkgs, ... }:
|
||
|
|
||
|
{
|
||
|
environment.systemPath = [ pkgs.hello ];
|
||
|
|
||
|
test = ''
|
||
|
echo checking systemPath in setEnvironment >&2
|
||
|
grep 'export PATH=${pkgs.hello}/bin' ${config.system.build.setEnvironment}
|
||
|
'';
|
||
|
}
|