Files
nix-config/home-manager/zsh.nix
2024-03-17 11:34:41 +01:00

21 lines
552 B
Nix

{ config, pkgs, inputs, ...}:
{
programs.zsh = {
enable = true;
enableCompletion = true;
autosuggestion.enable = true;
shellAliases = {
ll = "ls -l";
update = "sudo nixos-rebuild switch";
updateOffline = "sudo nixos-rebuild switch --option substitute false";
checkTime = "(cd ~/Nextcloud/work_drive/TS && nix run)";
ssh="TERM=xterm-256color ssh";
};
oh-my-zsh = {
enable = true;
plugins = [ "git" ];
theme = "eastwood";
};
};
}