1
0
Fork 0
nix-configuration/modules/base/shell.nix

11 lines
235 B
Nix
Raw Normal View History

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