nix/modules/system/cli/common.nix
2024-10-09 12:55:42 +02:00

18 lines
246 B
Nix

{ pkgs, ... }:
{
environment.systemPackages = with pkgs; [
usbutils
tree
fastfetch
btop
git
yazi
];
environment.pathsToLink = [ "/share/zsh" ];
programs.zsh.enable = true;
users.defaultUserShell = pkgs.zsh;
}