dotfiles/home/modules/utils.nix
2025-02-09 10:47:35 -08:00

22 lines
247 B
Nix

{ pkgs, ... }: {
home.packages = with pkgs; [
# Nix specific utilities
manix
nix-tree
# Utilities
jq
bc
file
wget
curl
btop
p7zip
sshpass
ripgrep
openvpn
pciutils
fastfetch
];
}