{ inputs, ... }: { debug = true; flake-file.inputs.devshell = { url = "github:numtide/devshell"; inputs.nixpkgs.follows = "nixpkgs"; }; imports = [ inputs.devshell.flakeModule ]; perSystem = { pkgs, ... }: { devshells.default = { packages = [ pkgs.nixd pkgs.nil pkgs.nixfmt pkgs.prettier ]; }; }; flake = { nix.nixPath = [ "nixpkgs=${inputs.nixpkgs}" ]; }; }