diff options
| author | seth <[email protected]> | 2023-08-12 17:22:05 -0400 |
|---|---|---|
| committer | seth <[email protected]> | 2023-08-12 17:32:33 -0400 |
| commit | c4e555842d79e9abd2a432c4fa9eb6722b214141 (patch) | |
| tree | 1461b1b0c64f1bb9d6b1ebae4c1924fb99bf0bf1 /parts/dev.nix | |
| parent | a5792c3e9a127e0c2ac1b5de022aa44e51570073 (diff) | |
hosts: nixinate -> deploy-rs
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; }; }; |
