From 6416f5b8db94ba018b1a7f3cf1138f7a46aa51a2 Mon Sep 17 00:00:00 2001 From: Harald Hoyer Date: Tue, 19 Nov 2024 08:26:05 +0100 Subject: [PATCH] feat: set default shell to fish for user harald Added configuration to set fish as the default shell for user harald. This improves user experience by providing a more friendly and powerful shell environment. --- systems/x86_64-darwin/mpro/default.nix | 2 ++ 1 file changed, 2 insertions(+) diff --git a/systems/x86_64-darwin/mpro/default.nix b/systems/x86_64-darwin/mpro/default.nix index 76d034b..a783582 100644 --- a/systems/x86_64-darwin/mpro/default.nix +++ b/systems/x86_64-darwin/mpro/default.nix @@ -12,5 +12,7 @@ with lib.metacfg; "/usr/local/Homebrew/bin" ]; + users.users.harald.shell = pkgs.fish; + system.stateVersion = 4; }