fleek
fleek copied to clipboard
add shell.d directories and auto-import them
figured it out.. I added to .local/share/fleek/user.nix the following programs.bash = { enable = true; bashrcExtra = '' # User specific aliases and functions if [ -d ~/.bashrc.d ]; then for rc in ~/.bashrc.d/*; do if [ -f "$rc" ]; then . "$rc" fi done fi ''; };