14 lines
203 B
Nix
14 lines
203 B
Nix
{ pkgs, ... }@all: with all;
|
|
{
|
|
home = {
|
|
packages = with pkgs; [
|
|
nh
|
|
nix-output-monitor
|
|
nvd
|
|
];
|
|
sessionVariables = {
|
|
NH_FLAKE = "${hyper.home}/nix-dots";
|
|
};
|
|
};
|
|
}
|