2024-02-29 14:53:34 +00:00
|
|
|
{ pkgs, ... }:
|
|
|
|
|
|
|
|
{
|
2024-05-07 22:02:59 +00:00
|
|
|
# Install ZSH for all users
|
|
|
|
programs.zsh.enable = true;
|
|
|
|
users.defaultUserShell = pkgs.zsh;
|
2024-03-21 14:09:00 +00:00
|
|
|
|
2024-05-07 22:02:59 +00:00
|
|
|
# Show a neat system statistics screen when opening a terminal
|
|
|
|
environment.systemPackages = with pkgs; [ fastfetch ];
|
2024-02-29 14:53:34 +00:00
|
|
|
}
|