Configuration for my NixOS based systems and Home Manager
0
fork

Configure Feed

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

ADD: yazi, remove lf

+28 -2
+1 -1
fish/functions/lfcd.fish
··· 13 13 14 14 function lfcd 15 15 set tmp (mktemp) 16 - lf -last-dir-path=$tmp $argv 16 + yazi --cwd-file=$tmp $argv 17 17 if test -f "$tmp" 18 18 set dir (cat $tmp) 19 19 rm -f $tmp
+27 -1
noah-home.nix
··· 43 43 iperf3 44 44 entr 45 45 bitwarden-cli 46 - lf 47 46 # Previewer for LF 48 47 unstable.pistol 49 48 sqlite ··· 212 211 enable = true; 213 212 extraConfig = builtins.readFile ./ssh/extra; 214 213 addKeysToAgent = "yes"; 214 + }; 215 + 216 + programs.yazi = { 217 + enable = true; 218 + package = unstable.yazi; 219 + enableFishIntegration = true; 220 + settings = { 221 + preview = { 222 + image_quality = 90; 223 + }; 224 + tasks = { 225 + image_bound = [ 226 + 0 227 + 0 228 + ]; 229 + }; 230 + }; 231 + plugins = { 232 + rsync = unstable.yaziPlugins.rsync; 233 + piper = unstable.yaziPlugins.piper; 234 + nord = unstable.yaziPlugins.nord; 235 + mediainfo = unstable.yaziPlugins.mediainfo; 236 + glow = unstable.yaziPlugins.glow; 237 + git = unstable.yaziPlugins.git; 238 + diff = unstable.yaziPlugins.diff; 239 + duckdb = unstable.yaziPlugins.duckdb; 240 + }; 215 241 }; 216 242 217 243 services.ssh-agent.enable = true;