From dfafbdf9904ae31192679f67029bd93f85ff0412 Mon Sep 17 00:00:00 2001 From: CherryKitten Date: Tue, 11 Jun 2024 11:57:27 +0200 Subject: [PATCH] mount eevee on tabby --- hosts/tabby/default.nix | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/hosts/tabby/default.nix b/hosts/tabby/default.nix index 7a42933..58a0a66 100644 --- a/hosts/tabby/default.nix +++ b/hosts/tabby/default.nix @@ -16,6 +16,12 @@ networking.wireless.iwd.enable = true; + fileSystems."/mnt/Media" = { + device = "192.168.0.3:/mnt/user/Media"; + fsType = "nfs"; + options = [ "x-systemd.automount" "noauto" "x-systemd.idle-timeout=600" "noatime" ]; # disconnects after 10 minutes (i.e. 600 seconds) + }; + # Enable CUPS to print documents. services.printing.enable = true;