infra/nix/modules/packages.nix

53 lines
722 B
Nix
Raw Normal View History

2023-10-15 22:16:06 +02:00
{pkgs, ...}: {
environment = {
# https://github.com/NixOS/nixpkgs/issues/195795
defaultPackages = [];
# List packages installed in system profile. To search, run:
# $ nix search wget
systemPackages = with pkgs; [
vim
git
curl
wget
rsync
file
gnused
bat
p7zip
zstd
b3sum
2023-12-02 21:41:23 +01:00
bottom
2023-10-15 22:16:06 +02:00
btop
htop
iotop
2023-12-17 23:19:24 +01:00
dmidecode
2023-10-15 22:16:06 +02:00
lsof
tcpdump
dnsutils
netcat
ethtool
avahi
nix-zsh-completions
2023-12-22 00:10:27 +01:00
deadnix
nil
2023-10-15 22:16:06 +02:00
direnv
sops
age
starship
eza
silver-searcher
ripgrep
zellij
du-dust
# dhall
tailscale
];
};
}