Major revamp.
This commit is contained in:
43
nixos/packages.nix
Normal file
43
nixos/packages.nix
Normal file
@@ -0,0 +1,43 @@
|
||||
{ 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;
|
||||
}
|
||||
Reference in New Issue
Block a user