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

{
   environment.systemPath = [ pkgs.hello ];

   programs.fish.enable = true;

   test = ''
     echo checking systemPath in /etc/fish/config.fish >&2
     grep 'set PATH ${pkgs.hello}/bin' ${config.out}/etc/fish/config.fish
   '';
}