Update packages list
This commit is contained in:
@@ -1,43 +1,40 @@
|
|||||||
{ config, pkgs, ... }:
|
{ config, pkgs, ... }:
|
||||||
let
|
{
|
||||||
nix-home = pkgs.callPackage ./nix-home.nix {};
|
nixpkgs.config.allowUnfree = true;
|
||||||
in
|
|
||||||
{
|
|
||||||
nixpkgs.config.allowUnfree = true;
|
|
||||||
|
|
||||||
environment.systemPackages =
|
environment.systemPackages =
|
||||||
with pkgs;
|
with pkgs;
|
||||||
let
|
let
|
||||||
sys = [
|
sys = [
|
||||||
stdenv
|
stdenv
|
||||||
findutils
|
findutils
|
||||||
coreutils
|
coreutils
|
||||||
patchelf
|
patchelf
|
||||||
binutils
|
binutils
|
||||||
psmisc
|
psmisc
|
||||||
iputils
|
iputils
|
||||||
nettools
|
nettools
|
||||||
netcat
|
netcat
|
||||||
rsync
|
rsync
|
||||||
htop
|
htop
|
||||||
iotop
|
iotop
|
||||||
zsh
|
zsh
|
||||||
fish
|
fish
|
||||||
wget
|
wget
|
||||||
vimNox
|
neovim
|
||||||
file
|
file
|
||||||
bc
|
bc
|
||||||
git
|
git
|
||||||
python
|
python
|
||||||
nix-prefetch-git
|
nix-prefetch-git
|
||||||
nix-home
|
home-manager
|
||||||
];
|
];
|
||||||
k8s = [
|
k8s = [
|
||||||
ebtables
|
ebtables
|
||||||
ethtool
|
ethtool
|
||||||
socat
|
socat
|
||||||
];
|
];
|
||||||
in
|
in
|
||||||
k8s ++
|
k8s ++
|
||||||
sys;
|
sys;
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user