nixos/shell.nix

14 lines
368 B
Nix
Raw Normal View History

2022-06-26 22:40:59 +02:00
{
perSystem = { inputs', pkgs, ... }: {
# Definitions like this are entirely equivalent to the ones
# you may have directly in flake.nix.
devShells.default = pkgs.mkShellNoCC {
nativeBuildInputs = [
inputs'.sops-nix.packages.sops-import-keys-hook
inputs'.deploy-rs.packages.deploy-rs
pkgs.nixpkgs-fmt
];
};
};
}