1
0
Fork 0
nixos-config/home-manager/roles/nvd.nix

10 lines
224 B
Nix
Raw Normal View History

2021-04-17 16:12:20 +00:00
{ config, pkgs, lib, ... }:
with lib;
let
dag = config.lib.dag;
nvd = import pkgs.sources.nvd { inherit pkgs; };
in
{
2021-05-18 14:28:31 +00:00
home.activation.report-changes = dag.entryAnywhere "${nvd}/bin/nvd diff $oldGenPath $newGenPath";
2021-04-17 16:12:20 +00:00
}