flake.nix: add devshell with deploy-rs
All checks were successful
Check flake / build-amd64-linux (push) Successful in 1m22s

This commit is contained in:
2025-08-15 21:05:59 +01:00
parent 24828da373
commit 9653e4d9d0
3 changed files with 48 additions and 1 deletions

20
nix/devshell.nix Normal file
View File

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