diff options
Diffstat (limited to 'parts/dev.nix')
| -rw-r--r-- | parts/dev.nix | 20 |
1 files changed, 11 insertions, 9 deletions
diff --git a/parts/dev.nix b/parts/dev.nix index c190008..c0b5490 100644 --- a/parts/dev.nix +++ b/parts/dev.nix @@ -25,15 +25,17 @@ devShells = { default = pkgs.mkShell { inherit (self.checks.${system}.pre-commit-check) shellHook; - packages = with pkgs; [ - actionlint - alejandra - deadnix - just - inputs.ragenix.packages.${system}.ragenix - statix - stylua - ]; + packages = with pkgs; + [ + actionlint + alejandra + deadnix + just + inputs.ragenix.packages.${system}.ragenix + statix + stylua + ] + ++ lib.optional (system == "x86_64-linux") deploy-rs; }; }; |
