42 lines
523 B
Nix
42 lines
523 B
Nix
{ config, pkgs, ... }:
|
|
{
|
|
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
|
|
neovim
|
|
file
|
|
bc
|
|
git
|
|
python
|
|
nix-prefetch-git
|
|
home-manager
|
|
];
|
|
k8s = [
|
|
ebtables
|
|
ethtool
|
|
socat
|
|
docker
|
|
];
|
|
in
|
|
k8s ++
|
|
sys;
|
|
}
|