mirror of
https://github.com/tomasriveral/nixos.git
synced 2026-08-12 02:28:37 +02:00
15 lines
190 B
Nix
15 lines
190 B
Nix
{ config, pkgs, ... }:
|
|
|
|
{
|
|
programs.zsh.oh-my-zsh = {
|
|
enable = true;
|
|
theme = "jonathan";
|
|
plugins = [
|
|
"aliases"
|
|
"alias-finder"
|
|
"colored-man-pages"
|
|
"colorize"
|
|
];
|
|
};
|
|
}
|