1
0
Fork 0
nixos-config/home-manager/roles/nvd.nix
Malte Brandy 084993f5d9
Fix nvd
2021-06-02 02:35:25 +02:00

8 lines
178 B
Nix

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