summaryrefslogtreecommitdiff
path: root/parts/dev.nix
diff options
context:
space:
mode:
authorseth <[email protected]>2023-08-12 17:22:05 -0400
committerseth <[email protected]>2023-08-12 17:32:33 -0400
commitc4e555842d79e9abd2a432c4fa9eb6722b214141 (patch)
tree1461b1b0c64f1bb9d6b1ebae4c1924fb99bf0bf1 /parts/dev.nix
parenta5792c3e9a127e0c2ac1b5de022aa44e51570073 (diff)
hosts: nixinate -> deploy-rs
Diffstat (limited to 'parts/dev.nix')
-rw-r--r--parts/dev.nix20
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;
};
};