mirror of
https://github.com/LnL7/nix-darwin.git
synced 2024-12-14 11:57:34 +00:00
12 lines
278 B
Nix
12 lines
278 B
Nix
{ config, pkgs, ... }:
|
|
|
|
{
|
|
environment.systemPath = [ pkgs.hello ];
|
|
|
|
programs.fish.enable = true;
|
|
|
|
test = ''
|
|
echo checking systemPath in /etc/fish/config.fish >&2
|
|
grep 'fenv export PATH=${pkgs.hello}/bin' ${config.out}/etc/fish/nixos-env-preinit.fish
|
|
'';
|
|
}
|