1
0
Fork 0
nixos-config/home-manager/roles/nvd.nix
2021-04-17 18:12:20 +02:00

9 lines
219 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 $oldGenPath $newGenPath";
}