sops: concentrate shell and config generation in one file

This commit is contained in:
SebastianStork 2025-07-28 16:03:43 +02:00
parent d84e13d45e
commit 9facf82a70
4 changed files with 30 additions and 28 deletions

13
flake/dev-shell.nix Normal file
View file

@ -0,0 +1,13 @@
_: {
perSystem =
{ inputs', pkgs, ... }:
{
devShells.default = pkgs.mkShellNoCC {
packages = [
pkgs.just
pkgs.nh
inputs'.deploy-rs.packages.default
];
};
};
}