diff options
author | sinanmohd <sinan@sinanmohd.com> | 2024-03-08 16:40:16 +0530 |
---|---|---|
committer | sinanmohd <sinan@sinanmohd.com> | 2024-03-08 16:40:25 +0530 |
commit | cfce93000afc72eca7b49ebba59fee6758e7bbf4 (patch) | |
tree | 3c16d7c147a39b2de3fcd1f1b9ab75e95f23694c | |
parent | 857474c66ea8b8e05c303f90d1ef839f4073988b (diff) |
cez/sshfs: move to /media, else it'll slow down stat on /
main victim is nvim-cmp, freezes nvim for a while
-rw-r--r-- | nixos/cez/modules/sshfs.nix | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/nixos/cez/modules/sshfs.nix b/nixos/cez/modules/sshfs.nix index a9ff183..05a8b96 100644 --- a/nixos/cez/modules/sshfs.nix +++ b/nixos/cez/modules/sshfs.nix @@ -10,7 +10,7 @@ in sops.secrets."misc/sftp" = {}; system.fsPackages = with pkgs; [ sshfs ]; - fileSystems."/kay" = { + fileSystems."/media/kay" = { device = "sftp@${domain}:"; fsType = "sshfs"; options = [ |