Enable zsh for wsl systems

This commit is contained in:
Martin Larsson 2025-02-09 15:35:59 +00:00
parent e0462c4cfb
commit 863b5399e4

View file

@ -9,4 +9,14 @@
environment.systemPackages = with pkgs; [
home-manager
];
programs = {
zsh = {
enable = true;
};
};
users.users.nixos = {
shell = pkgs.zsh;
};
}