diff options
Diffstat (limited to 'shell.nix')
| -rw-r--r-- | shell.nix | 7 |
1 files changed, 7 insertions, 0 deletions
| @@ -12,6 +12,13 @@ let | |||
| 12 | # files if the requirements*.txt files change | 12 | # files if the requirements*.txt files change |
| 13 | pythonEnv = poetry2nix.mkPoetryEnv { | 13 | pythonEnv = poetry2nix.mkPoetryEnv { |
| 14 | projectDir = ./util/nix; | 14 | projectDir = ./util/nix; |
| 15 | overrides = poetry2nix.overrides.withDefaults (self: super: { | ||
| 16 | qmk = super.qmk.overridePythonAttrs(old: { | ||
| 17 | # Allow QMK CLI to run "bin/qmk" as a subprocess (the wrapper changes | ||
| 18 | # $PATH and breaks these invocations). | ||
| 19 | dontWrapPythonPrograms = true; | ||
| 20 | }); | ||
| 21 | }); | ||
| 15 | }; | 22 | }; |
| 16 | in | 23 | in |
| 17 | 24 | ||
