this repo has no description
1
fork

Configure Feed

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

at 7f13d21e5156830a346c075866b7fcc0c74b735b 13 lines 365 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}