{ inputs, self, ... }: { debug = true; imports = [ ./devshell.nix ]; perSystem = { lib, system, ... }: { _module.args = { flake = { inherit inputs self; }; pkgs = import inputs.nixpkgs { inherit system; overlays = lib.attrValues self.overlays; config.allowUnfree = true; }; }; imports = [ (self + /packages) ]; }; }