This commit is contained in:
2024-04-20 12:26:33 +02:00
parent f1664ad753
commit 93b01ba03c
2 changed files with 16 additions and 16 deletions

View File

@@ -2,9 +2,9 @@
cli = import ../aliases.nix; cli = import ../aliases.nix;
in { in {
home.packages = with pkgs; [ home.packages = with pkgs; [
# zsh-autosuggestions zsh-autosuggestions
# zsh-powerlevel10k zsh-powerlevel10k
# zsh-prezto zsh-prezto
]; ];
programs.zsh = { programs.zsh = {
@@ -39,17 +39,17 @@ in {
# ]; # ];
# }; # };
oh-my-zsh = { # oh-my-zsh = {
enable = true; # enable = true;
plugins = [ "git" "vi-mode" ]; # plugins = [ "git" "vi-mode" ];
}; # };
#
prezto = { # prezto = {
enable = true; # enable = true;
tmux = { # tmux = {
autoStartLocal = true; # autoStartLocal = true;
autoStartRemote = true; # autoStartRemote = true;
}; # };
}; # };
}; };
} }

View File

@@ -10,7 +10,7 @@
# I use zsh btw # I use zsh btw
environment.shells = with pkgs; [ bash zsh ]; environment.shells = with pkgs; [ bash zsh ];
users.defaultUserShell = pkgs.zsh; users.defaultUserShell = pkgs.zsh;
programs.zsh.enable = true; # programs.zsh.enable = true;
# Configure console keymap # Configure console keymap
console.keyMap = "pl2"; console.keyMap = "pl2";