added shell.nix

This commit is contained in:
Linus Sehn 2022-01-21 17:18:44 +01:00
parent a3be2b81d9
commit 19c933e156

10
shell.nix Normal file
View File

@ -0,0 +1,10 @@
{ pkgs ? import <nixpkgs> { } }:
with pkgs;
mkShell {
buildInputs = [
# Is this program even allowed in Nix?
ansible
];
}