From 38f367edeb21e222cbc185b21fdc14b2b86de4c1 Mon Sep 17 00:00:00 2001 From: Raghuram Subramani Date: Tue, 14 Oct 2025 20:38:36 -0400 Subject: add owo --- modules/sshfs-owo.nix | 14 ++++++++++++++ 1 file changed, 14 insertions(+) create mode 100644 modules/sshfs-owo.nix (limited to 'modules/sshfs-owo.nix') diff --git a/modules/sshfs-owo.nix b/modules/sshfs-owo.nix new file mode 100644 index 0000000..7014751 --- /dev/null +++ b/modules/sshfs-owo.nix @@ -0,0 +1,14 @@ +{ pkgs, ... }: + +{ + fileSystems."/data" = { + device = "compromyse@owo.compromyse.xyz:data"; + fsType = "sshfs"; + options = [ + "nodev" + "noatime" + "allow_other" + "IdentityFile=/home/compromyse/.ssh/id_rsa" + ]; + }; +} -- cgit v1.2.3