Committed after system build
diff --git a/system/configuration.nix b/system/configuration.nix
index bae6035..44355ad 100644
--- a/system/configuration.nix
+++ b/system/configuration.nix
@@ -118,6 +118,7 @@
   users.users.minion = {
     isNormalUser = true;
     extraGroups = [ "wheel" "kvm" "docker" "containerd" ]; # Enable ‘sudo’ for the user.
+    shell = pkgs.zsh;
   };
 
   # List packages installed in system profile. To search, run:
diff --git a/users/minion/home.nix b/users/minion/home.nix
index 6e33576..477b3a1 100644
--- a/users/minion/home.nix
+++ b/users/minion/home.nix
@@ -16,8 +16,6 @@
   home.username = username;
   home.homeDirectory = homedir;
 
-  shell = pkgs.zsh;
-
   programs.vscode.enable = true;
   programs.vscode.package = pkgs.vscode-fhs;