Files
stormwind-nixfiles/packages.nix
RootHost-Stormwind 8c19d07766 add tcpdump package
2025-07-31 10:47:23 +02:00

24 lines
438 B
Nix

{ config, pkgs, ... }:
{
# Allow unfree packages
nixpkgs.config.allowUnfree = true;
# List packages installed in system profile. To search, run:
# $ nix search wget
environment.systemPackages = with pkgs; [
neovim
tldr
htop
hyfetch
lvm2
cryptsetup
pciutils
smartmontools
helix # Very bazed terminal editor
broot # Very bazed terminal file explorer
tcpdump
];
}