nixos/home/env/zsh.nix

17 lines
281 B
Nix

{ config, ... }:
{
imports = [ ./common.nix ];
programs.zsh = {
enable = true;
shellAliases = {
ll = "ls -l";
update = "sudo nixos-rebuild switch";
};
history = {
size = 10000;
path = "${config.xdg.dataHome}/zsh/history";
};
};
}