This commit is contained in:
4DBug
2026-02-09 01:41:48 -06:00
parent 782dfce269
commit de67d5e9ba
7 changed files with 30 additions and 24 deletions

View File

@@ -1,23 +0,0 @@
{ config, pkgs, ... }:
{
boot.supportedFilesystems = [ "fuse.sshfs" ];
environment.systemPackages = [ pkgs.sshfs ];
systemd.tmpfiles.rules = [
"d /mnt/box 0755 root root -"
];
fileSystems."/mnt/box" = {
device = "bug@box.bug.tools:/";
fsType = "fuse.sshfs";
options = [
"identityfile=/home/bug/.ssh/id_ed25519"
"allow_other"
"x-systemd.automount"
"noauto"
"reconnect"
"ServerAliveInterval=15"
];
};
}