Files
nixos/modules/essentials/packages.nix
T
2025-06-28 17:29:05 +03:00

52 lines
598 B
Nix
Executable File

{
config,
pkgs,
...
}:
{
environment = {
systemPackages = with pkgs; [
# Nix
nixfmt-tree
nix-diff
nix-tree
# Base
mc
yazi
pciutils
smartmontools
efibootmgr
usbutils
# Data
wget
curl
rsync
fdupes
# Disk
gparted
parted
ntfs3g
exfatprogs # for gparted exfat support
# Archivers
rar
unzip
zstd
zip
xarchiver
# Net
ipset
iptables
nftables
# Monitoring
btop
fastfetch
];
};
}