Files
nix/packages/system.nix
2025-03-30 21:12:06 -05:00

29 lines
344 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
docker
];
}