Add devShell including sops

This commit is contained in:
2022-12-09 03:43:14 +01:00
parent dad210a122
commit 9cede1ede2
2 changed files with 17 additions and 1 deletions

6
shell.nix Normal file
View File

@@ -0,0 +1,6 @@
{ pkgs ? import <nixpkgs> {} }:
pkgs.mkShell {
nativeBuildInputs = with pkgs; [
sops
];
}