From 22bc76a0fc5eda6735fe7711a8afc330fe44e5ca Mon Sep 17 00:00:00 2001
From: Joel Grunbaum <joelgrun@gmail.com>
Date: Tue, 15 Jul 2025 10:42:32 +0000
Subject: [PATCH] Add smini nix config with modularised config

---
 nixos/zsh.nix |   10 ++++++++++
 1 files changed, 10 insertions(+), 0 deletions(-)

diff --git a/nixos/zsh.nix b/nixos/zsh.nix
new file mode 100644
index 0000000..b70171a
--- /dev/null
+++ b/nixos/zsh.nix
@@ -0,0 +1,10 @@
+{ config, libs, pkgs, modulesPath, ... }:
+
+{
+  programs.zsh = {
+    enable = true;
+    enableCompletion = true;
+    #autosuggestion.enable = true;
+    syntaxHighlighting.enable = true;
+  };
+}

--
Gitblit v1.10.0