nixos-config/modules/home/programs/terminal/nh/default.nix

12 lines
209 B
Nix

{ config, ... }:
{
programs.nh = {
enable = true;
flake = "${config.home.homeDirectory}/Projects/nixos-config";
};
home.shellAliases = {
nhs = "nh os switch";
nht = "nh os test";
};
}