diff options
author | Joel Challis <git@zvecr.com> | 2021-08-25 15:27:48 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-08-25 15:27:48 +0100 |
commit | 527b1e52aa0c87d49b90ea18d7d3ca9728aaa9c2 (patch) | |
tree | 24666f21008a6d27a2b9ae10e40f9283d16ebd8a /shell.nix | |
parent | a84de5e22be25e2059dfee732f5cca3ec0953a35 (diff) | |
download | qmk_firmware-527b1e52aa0c87d49b90ea18d7d3ca9728aaa9c2.tar.gz qmk_firmware-527b1e52aa0c87d49b90ea18d7d3ca9728aaa9c2.zip |
Move nix folder alongside vagrant (#14132)
Diffstat (limited to 'shell.nix')
-rw-r--r-- | shell.nix | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -1,7 +1,7 @@ | |||
1 | { avr ? true, arm ? true, teensy ? true }: | 1 | { avr ? true, arm ? true, teensy ? true }: |
2 | let | 2 | let |
3 | # We specify sources via Niv: use "niv update nixpkgs" to update nixpkgs, for example. | 3 | # We specify sources via Niv: use "niv update nixpkgs" to update nixpkgs, for example. |
4 | sources = import ./nix/sources.nix { }; | 4 | sources = import ./util/nix/sources.nix { }; |
5 | pkgs = import sources.nixpkgs { }; | 5 | pkgs = import sources.nixpkgs { }; |
6 | 6 | ||
7 | poetry2nix = pkgs.callPackage (import sources.poetry2nix) { }; | 7 | poetry2nix = pkgs.callPackage (import sources.poetry2nix) { }; |
@@ -11,7 +11,7 @@ let | |||
11 | # --lock" etc. in the nix folder to adjust the contents of those | 11 | # --lock" etc. in the nix folder to adjust the contents of those |
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 = ./nix; | 14 | projectDir = ./util/nix; |
15 | }; | 15 | }; |
16 | in | 16 | in |
17 | 17 | ||