this repo has no description
0
fork

Configure Feed

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

Add a shell hook to the flake with a welcoming message

Rouffy 121d3cef c630fb42

+11 -1
+11 -1
flake.nix
··· 20 20 }; 21 21 in 22 22 { 23 - devShells."${pkgs.system}".default = pkgs.mkShell { 23 + devShells."${pkgs.system}".default = pkgs.mkShell rec { 24 24 nativeBuildInputs = with pkgs; [ 25 25 (rust-bin.stable.latest.default.override { 26 26 extensions = [ ··· 31 31 32 32 minecraft-server 33 33 ]; 34 + 35 + reset_color_code = ''\033[0m''; 36 + bright_cyan_color_code = ''\033[1;36m''; 37 + cyan_color_code = ''\033[0;36m''; 38 + bright_green_color_code = ''\033[1;32m''; 39 + project_name = ''meartist-client''; 40 + 41 + shellHook = '' 42 + echo -e "\n${bright_cyan_color_code}📦 Welcome to the default flake for ${bright_green_color_code}${project_name}${reset_color_code}${cyan_color_code}!${reset_color_code}" 43 + ''; 34 44 }; 35 45 }; 36 46 }