13 lines
273 B
Nix
13 lines
273 B
Nix
{ pkgs, ... }:
|
|
{
|
|
programs.zsh = {
|
|
enable = true;
|
|
enableCompletion = true;
|
|
autosuggestion.enable = true;
|
|
oh-my-zsh = {
|
|
enable = true;
|
|
plugins = [ "git" "battery" "docker" "docker-compose" "virtualenv" ];
|
|
theme = "agnoster";
|
|
};
|
|
};
|
|
}
|