Files
old-nixos-dotfiles/system/utils.nix
2024-09-18 00:24:37 +09:00

20 lines
228 B
Nix

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