From 14fdc3875f3f80b945cc62b1b41934239e7675a5 Mon Sep 17 00:00:00 2001 From: lightly-toasted Date: Sun, 21 Sep 2025 09:31:47 +0000 Subject: [PATCH] feat(wsl): set default shell to zsh --- hosts/wsl/configuration.nix | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/hosts/wsl/configuration.nix b/hosts/wsl/configuration.nix index dd38f2c..ab7f5de 100644 --- a/hosts/wsl/configuration.nix +++ b/hosts/wsl/configuration.nix @@ -1,4 +1,4 @@ -{ inputs, ... }: +{ pkgs, inputs, ... }: { imports = [ @@ -7,6 +7,8 @@ wsl.enable = true; wsl.defaultUser = "toast"; + programs.zsh.enable = true; + users.users.toast.shell = pkgs.zsh; networking.hostName = "wsl";