47 lines
1.1 KiB
Nix
47 lines
1.1 KiB
Nix
{ config, ... }: {
|
|
programs.zoxide.enable = true;
|
|
programs.zsh = {
|
|
enable = true;
|
|
enableCompletion = true;
|
|
# enableAutosuggestions = true;
|
|
autosuggestion.enable = true;
|
|
syntaxHighlighting.enable = true;
|
|
|
|
shellAliases =
|
|
let
|
|
flakeDir = "~/nix";
|
|
in {
|
|
rb = "sudo nixos-rebuild switch --flake ${flakeDir}";
|
|
upd = "nix flake update ${flakeDir}";
|
|
upg = "sudo nixos-rebuild switch --upgrade --flake ${flakeDir}";
|
|
|
|
hms = "home-manager switch --flake ${flakeDir}";
|
|
|
|
conf = "$EDITOR ${flakeDir}/nixos/hosts/$(hostname)/configuration.nix";
|
|
pkgs = "$EDITOR ${flakeDir}/nixos/packages.nix";
|
|
|
|
ll = "ls -l";
|
|
se = "sudoedit";
|
|
ff = "fastfetch";
|
|
cat = "bat";
|
|
cd = "z";
|
|
};
|
|
|
|
initExtra = ''
|
|
if [ -z "''${WAYLAND_DISPLAY}" ] && [ "''${XDG_VTNR}" -eq 1 ]; then
|
|
dbus-run-session Hyprland
|
|
fi
|
|
eval "$(zoxide init zsh)"
|
|
'';
|
|
|
|
history.size = 10000;
|
|
history.path = "${config.xdg.dataHome}/zsh/history";
|
|
|
|
oh-my-zsh = {
|
|
enable = true;
|
|
plugins = [ "git" "sudo" ];
|
|
theme = "agnoster"; # blinks is also really nice
|
|
};
|
|
};
|
|
}
|