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