nixos-config/common/packages-base.nix

33 lines
407 B
Nix
Raw Normal View History

2024-04-22 21:47:52 +02:00
{
pkgs,
lib,
inputs,
2024-04-22 21:47:52 +02:00
...
}: {
# Packages installd on every machine
environment.systemPackages = with pkgs; [
wget
dig
vim
2024-04-22 21:47:52 +02:00
nmap
btop
gitFull
smartmontools
lm_sensors
pciutils
gcc
gnumake
sysstat
file
ffmpeg
usbutils
2024-06-26 18:52:51 +02:00
bat
2024-08-06 18:44:43 +02:00
dust
2024-08-23 11:33:58 +02:00
nix-output-monitor
nix-index
2025-02-01 22:45:41 +01:00
unzip
inputs.agenix.packages.x86_64-linux.default
2024-04-22 21:47:52 +02:00
];
}