diff --git a/nixos/modules/profiles/base.nix b/nixos/modules/profiles/base.nix index e97a380..3684a98 100644 --- a/nixos/modules/profiles/base.nix +++ b/nixos/modules/profiles/base.nix @@ -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 = { diff --git a/nixos/modules/zsh.nix b/nixos/modules/zsh.nix deleted file mode 100644 index 90e32bb..0000000 --- a/nixos/modules/zsh.nix +++ /dev/null @@ -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" ]; - }; - }; -}