Files
nix-config/home-manager/zsh.nix
2023-12-11 21:17:56 +01:00

20 lines
392 B
Nix

{ user, pkgs, ... }:
{
home-manager.users.${user} = {
programs.zsh = {
enable = true;
enableCompletion = true;
enableAutosuggestions = true;
shellAliases = {
ll = "ls -l";
update = "sudo nixos-rebuild switch";
};
oh-my-zsh = {
enable = true;
plugins = [ "git" ];
theme = "eastwood";
};
};
};
}