Select the types of activity you want to include in your feed.
1{ 2 config, 3 lib, 4 ... 5}: { 6 options.cow.cat.enable = lib.mkEnableOption "Catppuccin theming everywhere"; 7 8 config = lib.mkIf config.cow.cat.enable { 9 catppuccin = { 10 enable = true; 11 flavor = "mocha"; 12 accent = "green"; 13 }; 14 }; 15}