Update packages list

This commit is contained in:
Jonas Juselius
2018-10-17 10:07:40 +02:00
parent 26b99bdebd
commit edf0fd41c0

View File

@@ -1,43 +1,40 @@
{ config, pkgs, ... }:
let
nix-home = pkgs.callPackage ./nix-home.nix {};
in
{
nixpkgs.config.allowUnfree = true;
{
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;
}
environment.systemPackages =
with pkgs;
let
sys = [
stdenv
findutils
coreutils
patchelf
binutils
psmisc
iputils
nettools
netcat
rsync
htop
iotop
zsh
fish
wget
neovim
file
bc
git
python
nix-prefetch-git
home-manager
];
k8s = [
ebtables
ethtool
socat
];
in
k8s ++
sys;
}