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