configuration/common/components/nix.user.nix
2024-01-03 07:43:25 -08:00

15 lines
323 B
Nix

{ lib, pkgs, ... }:
{
imports = [ ../../packages/nixpkgs-issue-55674.nix ];
config = {
# Diff after rebuild
home.activation.diff = lib.hm.dag.entryAnywhere ''
${pkgs.nvd}/bin/nvd diff "$oldGenPath" "$newGenPath"
'';
# Custom packages
nixpkgs.overlays = [ (import ../packages.nix) ];
};
}