1
0
Fork 0
mirror of https://github.com/LnL7/nix-darwin.git synced 2025-03-05 16:27:03 +00:00
nix-darwin/tests/system-path-zsh.nix

13 lines
239 B
Nix
Raw Normal View History

2017-03-11 22:28:51 +01:00
{ config, pkgs, ... }:
{
environment.systemPath = [ pkgs.hello ];
programs.zsh.enable = true;
test = ''
echo checking systemPath in /etc/zshrc >&2
grep 'export PATH=${pkgs.hello}/bin' ${config.out}/etc/zshrc
'';
}