Files
dotfiles/home-modules/nh.nix
Lennart J. Kurzweg (Nx2) 5a1c9eeacb 25.05 xps
2025-05-26 14:44:16 +02:00

14 lines
230 B
Nix

{ config, pkgs-unstable, ... }:
{
home = {
packages = with pkgs-unstable; [
nh
nix-output-monitor
nvd
];
sessionVariables = {
NH_FLAKE = "${config.home.homeDirectory}/nix-dots";
};
};
}