nix/programm_configs/zsh.nix

13 lines
273 B
Nix

{ pkgs, ... }:
{
programs.zsh = {
enable = true;
enableCompletion = true;
enableAutosuggestions = true;
oh-my-zsh = {
enable = true;
plugins = [ "git" "battery" "docker" "docker-compose" "virtualenv" ];
theme = "agnoster";
};
};
}