nix-config/home/zsh/default.nix

11 lines
210 B
Nix
Raw Normal View History

2022-01-18 09:32:55 +01:00
{ config, pkgs, ... }:
{
imports = [ ./common.nix ];
2022-01-18 10:33:23 +01:00
programs.starship.settings = {
gcloud = { disabled = true; };
python = { disabled = true; };
2022-01-18 09:32:55 +01:00
};
2022-01-18 10:33:23 +01:00
programs.zsh.enableVteIntegration = true;
2022-01-18 09:32:55 +01:00
}