44da0fbd49
add initial NixOS Configuration to git
15 lines
262 B
Nix
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;
|
|
};
|
|
}
|