aboutsummaryrefslogtreecommitdiff
path: root/infra/nix/devshell.nix
diff options
context:
space:
mode:
Diffstat (limited to 'infra/nix/devshell.nix')
-rw-r--r--infra/nix/devshell.nix7
1 files changed, 6 insertions, 1 deletions
diff --git a/infra/nix/devshell.nix b/infra/nix/devshell.nix
index 676f663..a09bb0c 100644
--- a/infra/nix/devshell.nix
+++ b/infra/nix/devshell.nix
@@ -9,7 +9,12 @@
in
pkgs.mkShellNoCC {
inputsFrom = [ self.devShells."${system}".common ];
- packages = [ treefmt ];
+ packages = [
+ # keep-sorted start
+ pkgs.sops
+ treefmt
+ # keep-sorted end
+ ];
};
};
}