8 lines
159 B
Nix
Raw Normal View History

2022-12-10 22:34:39 +03:00
{ config, ... }: {
home-manager.users.${config.mainuser} = {
2021-09-28 01:48:01 +03:00
programs.nix-index = {
enable = true;
enableZshIntegration = true;
};
};
}