mirror of
https://github.com/tomasriveral/nixos.git
synced 2026-08-12 10:30:44 +02:00
20 lines
303 B
Nix
20 lines
303 B
Nix
_: {
|
|
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"
|
|
];
|
|
};
|
|
}
|