mirror of
https://github.com/LnL7/nix-darwin.git
synced 2024-12-14 11:57:34 +00:00
39 lines
822 B
Nix
39 lines
822 B
Nix
{ config, lib, pkgs, ... }:
|
|
|
|
with lib;
|
|
|
|
{
|
|
environment.systemPath = mkMerge [
|
|
(mkBefore [ "beforePath" ])
|
|
[ "myPath" ]
|
|
(mkAfter [ "afterPath" ])
|
|
];
|
|
|
|
environment.profiles = mkMerge [
|
|
(mkBefore [ "beforeProfile" ])
|
|
[ "myProfile" ]
|
|
(mkAfter [ "afterProfile" ])
|
|
];
|
|
|
|
test = ''
|
|
echo 'checking PATH' >&2
|
|
env_path=$(bash -c 'source ${config.system.build.setEnvironment}; echo $PATH')
|
|
|
|
test "$env_path" = "${builtins.concatStringsSep ":" [
|
|
"beforePath"
|
|
"myPath"
|
|
"beforeProfile/bin"
|
|
"/homeless-shelter/.nix-profile/bin"
|
|
"myProfile/bin"
|
|
"/run/current-system/sw/bin"
|
|
"/nix/var/nix/profiles/default/bin"
|
|
"afterProfile/bin"
|
|
"/usr/local/bin"
|
|
"/usr/bin"
|
|
"/usr/sbin"
|
|
"/bin"
|
|
"/sbin"
|
|
"afterPath"
|
|
]}"
|
|
'';
|
|
}
|