From d3a5ffe8c1d9af2ec6f9d2d6ced6688563772b94 Mon Sep 17 00:00:00 2001
From: Chris Thompson <chris@agaric.com>
Date: Tue, 10 Dec 2024 06:29:26 -0500
Subject: [PATCH] Change default shell to zsh

---
 hosts/default/configuration.nix | 1 +
 hosts/default/main-user.nix     | 1 +
 2 files changed, 2 insertions(+)

diff --git a/hosts/default/configuration.nix b/hosts/default/configuration.nix
index 9c1eaa9..936b309 100644
--- a/hosts/default/configuration.nix
+++ b/hosts/default/configuration.nix
@@ -202,6 +202,7 @@
     brave # privacy oriented browser
     zig # the zig language
   ];
+  programs.zsh.enable = true;
   programs.git = {
     enable = true;
     lfs.enable = true;
diff --git a/hosts/default/main-user.nix b/hosts/default/main-user.nix
index a123ae3..35d3029 100644
--- a/hosts/default/main-user.nix
+++ b/hosts/default/main-user.nix
@@ -51,6 +51,7 @@ in
         php81Extensions.curl
         php81Extensions.posix
       ];
+      shell = packages.zsh;
     };
   };
 }