Files
old-nixos-dotfiles/system/utils.nix
2024-08-29 18:54:36 +09:00

18 lines
205 B
Nix

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