Files
dotfiles/home-modules/shell/nh.nix
Lennart J. Kurzweg (Nx2) 1683946235 nh
2024-04-18 20:53:28 +02:00

13 lines
226 B
Nix

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