We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent fe400a8 commit 466d80cCopy full SHA for 466d80c
.gitignore
@@ -1,2 +1,3 @@
1
.direnv/
2
.vscode/
3
+.ansible/
.yamllint
@@ -1,6 +1,5 @@
---
ignore: |
- roles/prometheus/files/generator.yml
4
roles/*/templates/*
5
6
extends: default
shell.nix
@@ -1,11 +1,13 @@
-{ pkgs ? import <nixpkgs> { } }:
+{ pkgs ? import <nixpkgs> {
+ config.allowUnfree = true;
+} }:
pkgs.mkShell {
buildInputs = with pkgs; [
7
ansible-lint
8
packer
- python311
- python311Packages.pip
9
+ python313
10
+ python313Packages.pip
11
jq
12
yamllint
13
];
0 commit comments