All checks were successful
Check flake / build-amd64-linux (push) Successful in 1m22s
21 lines
340 B
Nix
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";
|
|
}
|
|
];
|
|
};
|
|
};
|
|
}
|