{ nixpkgs, ... }: let inherit (nixpkgs) lib; readFileWithComments = path: let content = lib.strings.fileContents path; notComment = line: !lib.strings.hasPrefix "#" line; in builtins.filter notComment (lib.strings.splitString "\n" content); dontCheck = drv: drv.overrideAttrs { doCheck = false; }; in { inherit readFileWithComments dontCheck; }