Switch to zsh.

This commit is contained in:
Tom Alexander
2024-12-23 11:14:18 -05:00
parent 9c0f3ce601
commit 7decd40844
2 changed files with 18 additions and 0 deletions

View File

@@ -0,0 +1,17 @@
{
config,
lib,
pkgs,
...
}:
{
imports = [ ];
environment.systemPackages = with pkgs; [
zsh
];
users.users.talexander.shell = pkgs.zsh;
environment.shells = with pkgs; [ zsh ];
}