Files
old-nixos-dotfiles/system/utils.nix
2025-03-08 19:00:55 +09:00

19 lines
220 B
Nix

{ lib, pkgs, ... }:
{
# minimal utilities for using linux
environment.systemPackages = with pkgs; [
vim
wget
file
eza
jq
htop
btop
fastfetch
mc
parted
tree
tmux
];
}