Files
nix/packages/system.nix
2025-03-30 21:13:11 -05:00

27 lines
328 B
Nix

{ pkgs, ... }:
{
environment.systemPackages = with pkgs; [
home-manager
git
wget
# compiling
gcc
gnumake
# network
nmap
inetutils
sshs
# input testing
evtest
# nix language server
nixd
nil
];
}