We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e3bde7c commit b5330b4Copy full SHA for b5330b4
1 file changed
flake.nix
@@ -15,7 +15,11 @@
15
in {
16
devShells = forAllSystems (system:
17
let
18
- pkgs = import nixpkgs { inherit system; };
+ pkgs = import nixpkgs {
19
+ inherit system;
20
+ config.allowUnfreePredicate = pkg:
21
+ builtins.elem (nixpkgs.lib.getName pkg) [ "terraform" ];
22
+ };
23
docsPython = pkgs.python3.withPackages (ps: [
24
ps.mkdocs
25
ps."mkdocs-material"
0 commit comments