aboutsummaryrefslogtreecommitdiffhomepage
path: root/default.nix
diff options
context:
space:
mode:
Diffstat (limited to 'default.nix')
-rw-r--r--default.nix11
1 files changed, 11 insertions, 0 deletions
diff --git a/default.nix b/default.nix
new file mode 100644
index 0000000..6c1756e
--- /dev/null
+++ b/default.nix
@@ -0,0 +1,11 @@
1{ pkgs ? import <nixpkgs> {} }: with pkgs;
2
3 let
4 custom = callPackage ./custom.nix {};
5 in
6{
7 inherit ansible_2_8;
8 inherit (custom)dhall;
9 inherit (python38Packages)
10 ansible-lint;
11}