1
1
mirror of https://github.com/LnL7/nix-darwin.git synced 2024-09-19 16:47:29 +03:00
nix-darwin/tests/system-path-bash.nix
2017-03-11 22:28:51 +01:00

13 lines
242 B
Nix

{ config, pkgs, ... }:
{
environment.systemPath = [ pkgs.hello ];
programs.bash.enable = true;
test = ''
echo checking systemPath in /etc/bashrc >&2
grep 'export PATH=${pkgs.hello}/bin' ${config.out}/etc/bashrc
'';
}