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