2023-01-26 02:30:16 +03:00

12 lines
297 B
Nix

{ config, lib, ... }: {
home-manager.users.${config.mainuser} = {
programs.nix-index = {
enable = true;
enableZshIntegration = true;
};
};
programs.command-not-found.enable = lib.mkForce false;
# FIXME
# persist.derivative.homeDirectories = [ ".cache/nix-index" ];
}