nix/modules/system/cli/common.nix

18 lines
246 B
Nix
Raw Normal View History

2024-03-09 17:18:36 +01:00
{ pkgs, ... }:
{
environment.systemPackages = with pkgs; [
2024-06-21 12:38:09 +02:00
usbutils
2024-06-20 13:41:57 +02:00
tree
2024-10-06 16:36:21 +02:00
fastfetch
2024-03-09 17:18:36 +01:00
btop
git
2024-10-09 12:55:42 +02:00
yazi
2024-03-09 17:18:36 +01:00
];
2024-09-12 18:39:59 +02:00
environment.pathsToLink = [ "/share/zsh" ];
programs.zsh.enable = true;
users.defaultUserShell = pkgs.zsh;
2024-03-09 17:18:36 +01:00
}