feat(wsl): set default shell to zsh

This commit is contained in:
lightly-toasted 2025-09-21 09:31:47 +00:00
parent 79363ee03b
commit 14fdc3875f

View file

@ -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";