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

22 lines
267 B
Nix

{ config, pkgs, ... }:
{
programs.zsh.oh-my-zsh = {
enable = true;
theme = "jonathan";
plugins = [
"aliases"
"alias-finder"
"colored-man-pages"
"colorize"
"command-not-found"
"dirhistory"
"fzf"
"git"
"rclone"
"safe-paste"
"sudo"
];
};
}