summaryrefslogtreecommitdiff
path: root/features/kaysshfs.nix
diff options
context:
space:
mode:
Diffstat (limited to 'features/kaysshfs.nix')
-rw-r--r--features/kaysshfs.nix22
1 files changed, 0 insertions, 22 deletions
diff --git a/features/kaysshfs.nix b/features/kaysshfs.nix
deleted file mode 100644
index 83cb68e..0000000
--- a/features/kaysshfs.nix
+++ /dev/null
@@ -1,22 +0,0 @@
-{ config, pkgs, ... }:
-
-{
- system.fsPackages = with pkgs; [
- sshfs
- ];
-
- fileSystems."/mnt/kay" = {
- device = "sinansftp@sinanmohd.com:";
- fsType = "sshfs";
- options = [
- "allow_other" # for non-root access
- "_netdev" # this is a network fs
- "x-systemd.automount" # mount on demand
-
- # SSH options
- "reconnect" # handle connection drops
- "ServerAliveInterval=15" # keep connections alive
- "IdentityFile=/var/secrets/kaysftp-key"
- ];
- };
-}