infra/shell.nix

38 lines
646 B
Nix
Raw Normal View History

{ ... }:
2018-12-17 13:37:58 +01:00
let
2022-01-15 20:34:30 +01:00
pkgsPath = (import ./nix/sources.nix).nixpkgs;
pkgs = import pkgsPath { overlays = builtins.attrValues (import ./nix/overlays); };
2018-12-17 13:37:58 +01:00
in
2022-01-15 20:34:30 +01:00
pkgs.stdenv.mkDerivation {
name = "infra-env";
buildInputs = [
2022-01-15 20:34:30 +01:00
(with import (pkgsPath+"/nixos") { configuration = {}; }; with config.system.build; [ nixos-generate-config nixos-install nixos-enter manual.manpages ])
] ++ (with pkgs; [
just
2018-11-04 13:41:45 +01:00
git-crypt
vcsh
gnupg
2020-11-25 21:53:07 +01:00
git
2022-01-09 21:50:41 +01:00
nixUnstable
2022-01-15 20:34:30 +01:00
niv
vncdo
tesseract
imagemagick
2019-01-17 22:35:19 +01:00
esh
2019-07-17 09:45:57 +02:00
xorg.xwininfo
2020-09-14 19:41:45 +02:00
nmap
2020-11-25 12:18:12 +01:00
sysstat
2020-11-25 21:53:07 +01:00
lshw
xxHash
2022-01-15 20:34:30 +01:00
]);
# Set Environment Variables
RUST_BACKTRACE = 1;
}