Files
nixos/modules/home-manager/oh-my-zsh.nix
T

15 lines
190 B
Nix

{ config, pkgs, ... }:
{
programs.zsh.oh-my-zsh = {
enable = true;
theme = "jonathan";
plugins = [
"aliases"
"alias-finder"
"colored-man-pages"
"colorize"
];
};
}