configuration/common/components/nix.user.nix
2023-05-17 11:40:54 -07:00

15 lines
331 B
Nix

{ config, 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) ];
};
}