Files
nixfiles/shell.nix
T

15 lines
262 B
Nix
Raw Normal View History

2025-03-16 15:30:13 +00:00
{ config, lib, pkgs, ... }:
{
programs.zsh = {
enable = true;
ohMyZsh = {
enable = true;
plugins = [ "git" "man" "history-substring-search" ];
theme = "robbyrussell";
};
syntaxHighlighting.enable = true;
autosuggestions.enable = true;
};
}