base: remove redundant zsh config

This commit is contained in:
Tim Schubert 2024-06-01 15:49:57 +02:00
parent df242bd3de
commit 9d1c9974cd
Signed by: dadada
SSH key fingerprint: SHA256:bFAjFH3hR8zRBaJjzQDjc3o4jqoq5EZ87l+KXEjxIz0
2 changed files with 0 additions and 29 deletions

View file

@ -37,18 +37,6 @@ in
experimental-features = nix-command flakes
'';
programs.zsh = mkDefault {
enable = true;
autosuggestions.enable = true;
enableCompletion = true;
histSize = 100000;
vteIntegration = true;
syntaxHighlighting = {
enable = true;
highlighters = [ "main" "brackets" "pattern" "root" "line" ];
};
};
networking.networkmanager.dns = mkDefault "systemd-resolved";
networking.hosts = {

View file

@ -1,17 +0,0 @@
{ config
, pkgs
, lib
, ...
}: {
programs.zsh = {
enable = true;
autosuggestions.enable = true;
enableCompletion = true;
histSize = 100000;
vteIntegration = true;
syntaxHighlighting = {
enable = true;
highlighters = [ "main" "brackets" "pattern" "root" "line" ];
};
};
}