diff options
author | sinanmohd <sinan@sinanmohd.com> | 2023-09-06 18:48:34 +0530 |
---|---|---|
committer | sinanmohd <sinan@sinanmohd.com> | 2023-09-06 19:02:57 +0530 |
commit | 4972c53e861752d9b3ca29a58c71db84973c9ab5 (patch) | |
tree | 046098e07e3570a2107ff3ef979a0b74d837ea0a /hosts/cez/modules/sshfs.nix | |
parent | 28f11cc5c704b6901dc94551fb1504f0091bb69f (diff) |
repo: restructuring
Diffstat (limited to 'hosts/cez/modules/sshfs.nix')
-rw-r--r-- | hosts/cez/modules/sshfs.nix | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/hosts/cez/modules/sshfs.nix b/hosts/cez/modules/sshfs.nix new file mode 100644 index 0000000..a1f1904 --- /dev/null +++ b/hosts/cez/modules/sshfs.nix @@ -0,0 +1,22 @@ +{ config, pkgs, ... }: + +let + user = config.userdata.user; + domain = config.userdata.domain; +in +{ + system.fsPackages = with pkgs; [ sshfs ]; + + fileSystems."/kay" = { + device = "${user}@${domain}:"; + fsType = "sshfs"; + options = [ + "allow_other" # for non-root access + "_netdev" # this is a network fs + "x-systemd.automount" # mount on demand + "reconnect" # handle connection drops + "ServerAliveInterval=15" # keep connections alive + "IdentityFile=/var/secrets/ssh/${user}.key" + ]; + }; +} |