nix/modules/system/cli/common.nix
2024-12-10 18:38:17 +01:00

20 lines
256 B
Nix

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