this repo has no description
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

build: add Nix shell

+27
+27
shell.nix
··· 1 + # https://status.nixos.org (nixos-22.11) 2 + { pkgs ? import (fetchTarball "https://github.com/NixOS/nixpkgs/archive/a558f7ac29f5.tar.gz") {} }: 3 + 4 + let 5 + python-packages = pkgs.python3.withPackages (p: with p; [ 6 + kubernetes 7 + ]); 8 + in 9 + pkgs.mkShell { 10 + buildInputs = with pkgs; [ 11 + ansible 12 + ansible-lint 13 + git 14 + gnumake 15 + k9s 16 + kubectl 17 + neovim 18 + oci-cli 19 + openssh 20 + pre-commit 21 + shellcheck 22 + terraform 23 + yamllint 24 + 25 + python-packages 26 + ]; 27 + }