26 lines
270 B
Nix
26 lines
270 B
Nix
{ config, pkgs, ... }:
|
|
|
|
{
|
|
# Package configuration
|
|
environment.systemPackages = with pkgs; [
|
|
elfutils
|
|
exfat
|
|
file
|
|
tree
|
|
pwgen
|
|
proot
|
|
|
|
parted
|
|
pv
|
|
tmux
|
|
wget
|
|
curl
|
|
|
|
git
|
|
pastebinit
|
|
gist
|
|
|
|
usbutils
|
|
pciutils
|
|
];
|
|
}
|