feat: add yazi integration with fish

This commit is contained in:
DACHXY 2025-01-25 21:09:16 +08:00
parent 24afd66d64
commit 3049173514
12 changed files with 2386 additions and 3 deletions

View file

@ -3,6 +3,23 @@
{
boot.kernelPackages = pkgs.linuxPackages_latest;
fileSystems."/mnt/ssd" = {
device = "/dev/disk/by-uuid/4E21-0000";
fsType = "exfat";
options = [
"x-systemd.automount"
"noauto"
"x-systemd.idle-timeout=600"
"nofail"
"user"
"x-gvfs-show"
"gid=1000"
"uid=1000"
"dmask=000"
"fmask=000"
];
};
fileSystems."/mnt/storage" = {
device = "router.dn:/mnt/storage";
fsType = "nfs";

View file

@ -47,6 +47,7 @@
gh # Github cli tool
gnumake
lm_sensors
temurin-jre-bin
openssl
openssl.dev
pkg-config # Include Lib
@ -103,6 +104,5 @@
])
++ [
inputs.ghostty.packages.${system}.default
inputs.yazi.packages.${system}.default
];
}