summaryrefslogtreecommitdiff
path: root/modules/sshfs-owo.nix
blob: 7014751372a6e96543256622738a12433d3ed9bf (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
{ pkgs, ... }:

{
  fileSystems."/data" = {
    device = "compromyse@owo.compromyse.xyz:data";
    fsType = "sshfs";
    options = [
      "nodev"
      "noatime"
      "allow_other"
      "IdentityFile=/home/compromyse/.ssh/id_rsa"
    ];
  };
}