dotfiles/nix-conf/home/includes/scripts/hm-changes-report.nix

17 lines
605 B
Nix

{ config, pkgs, ... }:
# https://github.com/gvolpe/nix-config/blob/e28a220d0087064e6bad6b992b4914a65eb545e5/home/scripts/changes-report.nix
let
#hm-profiles = "/nix/var/nix/profiles/per-user/${config.home.username}/home-manager-*-link";
hm-profiles = "/nix/var/nix/profiles/per-user/djm/home-manager-*-link";
in
pkgs.writeShellScriptBin "hm-changes-report" ''
# Disable nvd if there are less than 2 hm profiles.
if [ $(ls -d1v ${hm-profiles} 2>/dev/null | wc -l) -lt 2 ]; then
echo "Skipping changes report..."
else
${pkgs.nvd}/bin/nvd diff $(ls -d1v ${hm-profiles} | tail -2)
fi
''