1
0
Fork 0
mirror of https://github.com/LnL7/nix-darwin.git synced 2025-03-06 08:47:00 +00:00
nix-darwin/tests/system-path-fish.nix

13 lines
278 B
Nix
Raw Normal View History

2017-03-11 22:28:51 +01:00
{ config, pkgs, ... }:
{
environment.systemPath = [ pkgs.hello ];
programs.fish.enable = true;
test = ''
echo checking systemPath in /etc/fish/config.fish >&2
2017-11-05 12:39:24 -05:00
grep 'fenv export PATH=${pkgs.hello}/bin' ${config.out}/etc/fish/nixos-env-preinit.fish
2017-03-11 22:28:51 +01:00
'';
}