11 lines
182 B
Nix
11 lines
182 B
Nix
{
|
|
flake.modules.homeManager.nh =
|
|
{ config, ... }:
|
|
{
|
|
programs.nh = {
|
|
enable = true;
|
|
flake = config.meta.user.nixosConfigurationPath;
|
|
};
|
|
};
|
|
}
|