this repo has no description
1
fork

Configure Feed

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

at main 17 lines 330 B view raw
1{ 2 config, 3 lib, 4 pkgs, 5 inputs, 6 ... 7}: { 8 options.cow.comma.enable = lib.mkEnableOption "Comma With DB"; 9 10 config = lib.mkIf config.cow.comma.enable { 11 nixpkgs.overlays = [inputs.nix-index-db.overlays.nix-index]; 12 programs.nix-index.enable = true; 13 home.packages = with pkgs; [ 14 comma-with-db 15 ]; 16 }; 17}