From be2d200bfb48f886e1887ce432e74bd2ec6fc782 Mon Sep 17 00:00:00 2001 From: jimjam4real Date: Sun, 22 Sep 2024 18:10:21 -0400 Subject: [PATCH] Small changes to NFS and Pinebook --- nixos/hardware/machines/pinebook.nix | 2 +- nixos/server/nfs.nix | 6 ++---- 2 files changed, 3 insertions(+), 5 deletions(-) diff --git a/nixos/hardware/machines/pinebook.nix b/nixos/hardware/machines/pinebook.nix index 32d259b..d9e7d74 100644 --- a/nixos/hardware/machines/pinebook.nix +++ b/nixos/hardware/machines/pinebook.nix @@ -23,7 +23,7 @@ fsType = "vfat"; options = [ "fmask=0022" "dmask=0022" ]; }; - "/home/jimbo/Bulk" = { + "/home/jimbo/Downloads" = { device = "/dev/disk/by-uuid/f0b6cf4e-9576-4ab5-96ae-2a7e57599a35"; fsType = "btrfs"; }; diff --git a/nixos/server/nfs.nix b/nixos/server/nfs.nix index 6b2e95d..92c9561 100644 --- a/nixos/server/nfs.nix +++ b/nixos/server/nfs.nix @@ -1,11 +1,9 @@ { # NFS server - services.nfs.server = let - ips = import ../modules/ips.nix; - in { + services.nfs.server = { enable = true; exports = '' - /export/JimboNFS ${ips.localSpan}.0/24(rw,no_subtree_check) + /export/JimboNFS 0.0.0.0(rw,no_subtree_check) ''; }; }