Files
nix/modules/sshfs.nix
2026-02-11 20:24:05 -06:00

18 lines
406 B
Nix

{ config, pkgs, device, ... }:
{
fileSystems."/mnt/box" = {
device = "bug@box.bug.tools:/";
fsType = "fuse.sshfs";
options = [
"identityfile=/home/bug/.ssh/id_ed25519"
"idmap=user"
"x-systemd.automount"
"allow_other"
"user"
"_netdev"
];
};
boot.supportedFilesystems."fuse.sshfs" = true;
}