WIP: Restructuring to new scheme

This commit is contained in:
Jonas Juselius
2019-10-16 10:32:19 +02:00
parent e4765df729
commit 361dbcea72
30 changed files with 8 additions and 40 deletions

41
nixos.bak/packages.nix Normal file
View File

@@ -0,0 +1,41 @@
{ 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;
}