21 lines
389 B
Nix
21 lines
389 B
Nix
{ config, pkgs, inputs, ... }:
|
|
|
|
{
|
|
programs.zsh = {
|
|
enable = true;
|
|
autosuggestion.enable = true;
|
|
syntaxHighlighting.enable = true;
|
|
oh-my-zsh = {
|
|
enable = true;
|
|
theme = "agnoster";
|
|
#plugins = [ "git" "ssh-agent" ];
|
|
};
|
|
};
|
|
|
|
# set important env vars
|
|
home.sessionVariables = {
|
|
EDITOR = "vim";
|
|
NH_FLAKE = "/home/aaron/git/nixconfig";
|
|
};
|
|
}
|