nix/modules/home/default.nix
Ameya Shenoy 4998e822a7 feat: init
Signed-off-by: Ameya Shenoy <shenoy.ameya@gmail.com>
2024-11-11 01:48:40 +05:30

10 lines
313 B
Nix

{ inputs, pkgs, ... }: {
# Let Home Manager install and manage itself.
programs.home-manager.enable = true;
# Show activation change diff for new builds.
home.activation.report-changes =
inputs.home-manager.lib.hm.dag.entryAnywhere ''
${pkgs.nvd}/bin/nvd diff $oldGenPath $newGenPath
'';
}