this repo has no description
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

at 9e4e568301c20f75cf636642b9c93f3b6a8a474f 13 lines 367 B view raw
1{nixpkgs, ...}: let 2 inherit (nixpkgs) lib; 3 4 readFileWithComments = path: let 5 content = lib.strings.fileContents path; 6 notComment = line: !lib.strings.hasPrefix "#" line; 7 in 8 builtins.filter notComment (lib.strings.splitString "\n" content); 9 10 dontCheck = drv: drv.overrideAttrs { doCheck = false; }; 11in { 12 inherit readFileWithComments dontCheck; 13}