infra/nixos-configuration/common/pkg/default.nix

36 lines
468 B
Nix
Raw Normal View History

2015-10-23 01:26:53 +02:00
{ 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
# '';
# })
2015-10-23 01:26:53 +02:00
elfutils
exfat
2015-10-23 01:26:53 +02:00
file
tree
pwgen
proot
parted
pv
tmux
wget
curl
git
pastebinit
gist
usbutils
pciutils
];
}