Remove unnecessary packages and cleanup.
This commit is contained in:
@@ -31,10 +31,5 @@
|
|||||||
|
|
||||||
security.rtkit.enable = true;
|
security.rtkit.enable = true;
|
||||||
|
|
||||||
fileSystems."/data" = {
|
|
||||||
device = "10.253.18.103:/data";
|
|
||||||
fsType = "nfs";
|
|
||||||
};
|
|
||||||
|
|
||||||
imports = [ ./users.nix ./packages.nix ];
|
imports = [ ./users.nix ./packages.nix ];
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -6,59 +6,36 @@ in
|
|||||||
nixpkgs.config.allowUnfree = true;
|
nixpkgs.config.allowUnfree = true;
|
||||||
|
|
||||||
environment.systemPackages =
|
environment.systemPackages =
|
||||||
with pkgs;
|
with pkgs;
|
||||||
let
|
let
|
||||||
sys = [
|
sys = [
|
||||||
stdenv
|
stdenv
|
||||||
findutils
|
findutils
|
||||||
coreutils
|
coreutils
|
||||||
psmisc
|
patchelf
|
||||||
iputils
|
binutils
|
||||||
nettools
|
psmisc
|
||||||
netcat
|
iputils
|
||||||
rsync
|
nettools
|
||||||
htop
|
netcat
|
||||||
iotop
|
rsync
|
||||||
zsh
|
htop
|
||||||
wget
|
iotop
|
||||||
vimNox
|
zsh
|
||||||
python
|
wget
|
||||||
file
|
vimNox
|
||||||
bc
|
file
|
||||||
sshuttle
|
bc
|
||||||
nix-prefetch-git
|
git
|
||||||
docker
|
nix-prefetch-git
|
||||||
nix-home
|
nix-home
|
||||||
];
|
];
|
||||||
devel = [
|
k8s = [
|
||||||
git
|
ebtables
|
||||||
patchelf
|
ethtool
|
||||||
binutils
|
socat
|
||||||
gcc
|
];
|
||||||
];
|
in
|
||||||
dotnet = with dotnetPackages; [
|
k8s ++
|
||||||
fsharp
|
sys;
|
||||||
mono-addins
|
}
|
||||||
mono
|
|
||||||
Fake
|
|
||||||
Paket
|
|
||||||
];
|
|
||||||
node = with nodePackages; [
|
|
||||||
nodejs
|
|
||||||
npm
|
|
||||||
npm2nix
|
|
||||||
yo
|
|
||||||
gulp
|
|
||||||
];
|
|
||||||
k8s = [
|
|
||||||
ebtables
|
|
||||||
ethtool
|
|
||||||
socat
|
|
||||||
];
|
|
||||||
in
|
|
||||||
devel ++
|
|
||||||
dotnet ++
|
|
||||||
node ++
|
|
||||||
k8s ++
|
|
||||||
sys;
|
|
||||||
}
|
|
||||||
|
|||||||
Reference in New Issue
Block a user