1
0
Fork 0
nixos-config/home-manager/roles/nvd.nix
2021-05-18 16:28:31 +02:00

10 lines
224 B
Nix

{ config, pkgs, lib, ... }:
with lib;
let
dag = config.lib.dag;
nvd = import pkgs.sources.nvd { inherit pkgs; };
in
{
home.activation.report-changes = dag.entryAnywhere "${nvd}/bin/nvd diff $oldGenPath $newGenPath";
}