From 52d34d742563bef7c5ffeb17c89b8a92b564cab9 Mon Sep 17 00:00:00 2001 From: Leonora Tindall Date: Mon, 5 Feb 2024 10:50:12 -0600 Subject: [PATCH] Move zsh config to zsh.nix --- home.nix | 8 +------- zsh.nix | 9 +++++++++ 2 files changed, 10 insertions(+), 7 deletions(-) create mode 100644 zsh.nix diff --git a/home.nix b/home.nix index a9ee70f..613fe32 100644 --- a/home.nix +++ b/home.nix @@ -5,15 +5,9 @@ in imports = [ ./vim.nix ./git.nix + ./zsh.nix ]; - programs.zsh = { - enable = true; - enableAutosuggestions = true; - enableCompletion = true; - enableVteIntegration = true; - }; - home.packages = with pkgs; [ htop wget diff --git a/zsh.nix b/zsh.nix new file mode 100644 index 0000000..6a9b77f --- /dev/null +++ b/zsh.nix @@ -0,0 +1,9 @@ +{ config, pkgs, ... }: +{ + programs.zsh = { + enable = true; + enableAutosuggestions = true; + enableCompletion = true; + enableVteIntegration = true; + }; +}