Files
platform/base/packages.nix
Jonas Juselius 48a7d0d444 Use fish.
2017-11-01 20:26:04 +01:00

44 lines
638 B
Nix

{ config, pkgs, ... }:
let
nix-home = pkgs.callPackage ./nix-home.nix {};
in
{
nixpkgs.config.allowUnfree = true;
environment.systemPackages =
with pkgs;
let
sys = [
stdenv
findutils
coreutils
patchelf
binutils
psmisc
iputils
nettools
netcat
rsync
htop
iotop
zsh
fish
wget
vimNox
file
bc
git
python
nix-prefetch-git
nix-home
];
k8s = [
ebtables
ethtool
socat
];
in
k8s ++
sys;
}