shell: remove cachix from i686-linux

Build of cachix is failing on i686-linux right now. Remove it so shell
is still usable.
This commit is contained in:
Timothy DeHerrera 2021-02-14 02:38:41 -07:00
parent 933fb8fee9
commit 4e582b1ff5
No known key found for this signature in database
GPG key ID: 8985725DB5B0C122

View file

@ -42,7 +42,11 @@ pkgs.devshell.mkShell {
mapCmd = category: map (mkCommand category);
in
mapCmd "main" [ flk cachix git ] ++
mapCmd "main"
(
[ flk git ] ++
lib.optional (system != "i686-linux") cachix
) ++
mapCmd "linters" [ nixpkgs-fmt editorconfig-checker ] ++
mapCmd "documentation" [ python3Packages.grip mdbook ] ++ [
{