14 lines
227 B
Nix
Executable File
14 lines
227 B
Nix
Executable File
{ config, pkgs-unstable, ... }:
|
|
{
|
|
home = {
|
|
packages = with pkgs-unstable; [
|
|
nh
|
|
nix-output-monitor
|
|
nvd
|
|
];
|
|
sessionVariables = {
|
|
FLAKE = "${config.home.homeDirectory}/nix-dots";
|
|
};
|
|
};
|
|
}
|