24 lines
402 B
Nix
24 lines
402 B
Nix
{
|
|
config,
|
|
pkgs,
|
|
...
|
|
}: {
|
|
users.defaultUserShell = pkgs.zsh;
|
|
environment.shells = with pkgs; [ zsh ];
|
|
|
|
programs.zsh = {
|
|
enable = true;
|
|
enableCompletion = true;
|
|
autosuggestions.enable = true;
|
|
|
|
shellAliases = {
|
|
update = "sudo nixos-rebuild switch --flake";
|
|
};
|
|
|
|
ohMyZsh = {
|
|
enable = true;
|
|
plugins = ["git"];
|
|
theme = "robbyrussell";
|
|
};
|
|
};
|
|
}
|