Files
nix-config/nix/devshell.nix
Jordan Holt 9653e4d9d0
All checks were successful
Check flake / build-amd64-linux (push) Successful in 1m22s
flake.nix: add devshell with deploy-rs
2025-08-15 21:05:59 +01:00

21 lines
340 B
Nix

{ inputs, ... }:
{
imports = [
inputs.devshell.flakeModule
];
perSystem =
{ pkgs, ... }:
{
devshells.default = {
commands = [
{
package = pkgs.deploy-rs;
name = "deploy";
help = "Deploy this nix-config to remote hosts";
}
];
};
};
}