2020-04-14 21:53:31 +00:00
|
|
|
{ config, pkgs, ... }:
|
|
|
|
|
|
|
|
{
|
|
|
|
launchd.labelPrefix = "org.nix-darwin";
|
|
|
|
|
|
|
|
test = ''
|
|
|
|
echo checking activation service in /Library/LaunchDaemons >&2
|
|
|
|
grep "org.nix-darwin.activate-system" ${config.out}/Library/LaunchDaemons/org.nix-darwin.activate-system.plist
|
|
|
|
|
|
|
|
echo checking activation of /run/current-system >&2
|
2024-08-31 08:27:10 +00:00
|
|
|
script=$(cat ${config.out}/Library/LaunchDaemons/org.nix-darwin.activate-system.plist | awk -F'[< ]' '$6 ~ "^/nix/store/.*" {print $6}')
|
2020-04-14 21:53:31 +00:00
|
|
|
grep "ln -sfn .* /run/current-system" "$script"
|
|
|
|
'';
|
|
|
|
}
|