infra/configuration/common/pkg/default.nix
2016-03-05 18:46:58 +01:00

34 lines
451 B
Nix

{ config, pkgs, ... }:
{
# Package configuration
environment.systemPackages = with pkgs; [
nix-repl
( busybox.override {
extraConfig = ''
CONFIG_STATIC y
CONFIG_INSTALL_APPLET_DONT y
CONFIG_INSTALL_APPLET_SYMLINKS n
'';
})
elfutils
file
tree
pwgen
proot
parted
pv
tmux
wget
curl
git
pastebinit
gist
usbutils
pciutils
];
}