From 9d1c9974cd5939eb1ebae9d0186394810e24bc67 Mon Sep 17 00:00:00 2001 From: Tim Schubert Date: Sat, 1 Jun 2024 15:49:57 +0200 Subject: [PATCH] base: remove redundant zsh config --- nixos/modules/profiles/base.nix | 12 ------------ nixos/modules/zsh.nix | 17 ----------------- 2 files changed, 29 deletions(-) delete mode 100644 nixos/modules/zsh.nix 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" ]; - }; - }; -}