nix/programm_configs/zsh.nix
2024-02-29 23:31:15 +01:00

11 lines
209 B
Nix

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