{ inputs, ... }: { imports = [ inputs.devshell.flakeModule ]; perSystem = { pkgs, self', system, ... }: { devshells.default = { commands = [ { help = "example command"; name = "example"; command = "echo 'this is an example command'"; } ]; packages = [ inputs.clan-core.packages.${system}.clan-cli ]; }; }; }