mirror of
https://github.com/tomasriveral/nixos.git
synced 2026-08-12 18:30:46 +02:00
24 lines
329 B
Nix
24 lines
329 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"
|
|
];
|
|
};
|
|
}
|