Files
jsl-home/shell.nix
John Lancaster c954124c13 added shell stuff
2025-06-30 20:21:20 -05:00

18 lines
346 B
Nix

{ lib, pkgs, ... }:
{
home.shell.enableZshIntegration = true;
programs.zsh = {
enable = true;
oh-my-zsh = {
enable = true;
theme = "risto";
plugins = [
"sudo"
"dotenv"
"git"
"ssh"
"ssh-agent"
];
};
shellAliases.ls = "${pkgs.eza}/bin/eza -lgos type --no-time";
};