nix/modules/system/cli/common.nix

12 lines
121 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-03-09 17:18:36 +01:00
neofetch
btop
git
];
}