summaryrefslogtreecommitdiff
path: root/tests/system-path.nix
blob: 9b8e315cca90ce8a07a8ed3c7e0469c20cfb9e3c (plain)
1
2
3
4
5
6
7
8
9
10
{ config, pkgs, ... }:

{
   environment.systemPath = [ pkgs.hello ];

   test = ''
     echo checking systemPath in setEnvironment >&2
     grep 'export PATH=${pkgs.hello}/bin' ${config.system.build.setEnvironment}
   '';
}