Files
nixfiles/shell.nix
T
Emma Thorpe 44da0fbd49 feat: initial commit
add initial NixOS Configuration to git
2025-03-16 15:30:13 +00:00

15 lines
262 B
Nix

{ config, lib, pkgs, ... }:
{
programs.zsh = {
enable = true;
ohMyZsh = {
enable = true;
plugins = [ "git" "man" "history-substring-search" ];
theme = "robbyrussell";
};
syntaxHighlighting.enable = true;
autosuggestions.enable = true;
};
}