fleek icon indicating copy to clipboard operation
fleek copied to clipboard

add shell.d directories and auto-import them

Open bketelsen opened this issue 1 year ago • 0 comments

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 ''; };

bketelsen avatar May 08 '23 14:05 bketelsen