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