From 19c933e156e0799903ac1d000f1a6e697099e063 Mon Sep 17 00:00:00 2001 From: Linus Sehn Date: Fri, 21 Jan 2022 17:18:44 +0100 Subject: [PATCH] added shell.nix --- shell.nix | 10 ++++++++++ 1 file changed, 10 insertions(+) create mode 100644 shell.nix diff --git a/shell.nix b/shell.nix new file mode 100644 index 0000000..8c6be26 --- /dev/null +++ b/shell.nix @@ -0,0 +1,10 @@ +{ pkgs ? import { } }: + +with pkgs; + +mkShell { + buildInputs = [ + # Is this program even allowed in Nix? + ansible + ]; +}