midori-config/profiles/packages.nix
2025-10-19 13:42:52 +02:00

26 lines
280 B
Nix

{ pkgs, ... }:
{
environment.systemPackages = with pkgs; [
# VCS
git
# Utilities to find files
fd
findutils
ripgrep
# Analyze files
file
# recursive ls
tree
# System monitoring
htop
# Disk usage analyser
ncdu
];
}