infra/modules/darwin/common/upgrade-diff.nix
2023-08-08 23:43:31 +00:00

13 lines
449 B
Nix

{ config, ... }:
{
# set $HOME to avoid 'warning: $HOME is not owned by you'
# https://github.com/NixOS/nix/issues/6834
# srvos
system.activationScripts.postActivation.text = ''
if [[ -e /run/current-system ]]; then
echo "--- diff to current-system"
HOME=/var/root ${config.nix.package}/bin/nix --extra-experimental-features nix-command store diff-closures /run/current-system "$systemConfig"
echo "---"
fi
'';
}