Skip to content

Commit 466d80c

Browse files
committed
update nix shell
1 parent fe400a8 commit 466d80c

File tree

3 files changed

+6
-4
lines changed

3 files changed

+6
-4
lines changed

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,3 @@
11
.direnv/
22
.vscode/
3+
.ansible/

.yamllint

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,5 @@
11
---
22
ignore: |
3-
roles/prometheus/files/generator.yml
43
roles/*/templates/*
54

65
extends: default

shell.nix

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,13 @@
1-
{ pkgs ? import <nixpkgs> { } }:
1+
{ pkgs ? import <nixpkgs> {
2+
config.allowUnfree = true;
3+
} }:
24

35
pkgs.mkShell {
46
buildInputs = with pkgs; [
57
ansible-lint
68
packer
7-
python311
8-
python311Packages.pip
9+
python313
10+
python313Packages.pip
911
jq
1012
yamllint
1113
];

0 commit comments

Comments
 (0)