switching all smb to nfs

This commit is contained in:
Matt Nish-Lapidus 2025-04-05 14:11:59 -04:00
parent a1434cee4e
commit 68c5ca2ce7
3 changed files with 9 additions and 42 deletions

View file

@ -61,7 +61,7 @@
networking.hostName = "media-server"; # Define your hostname. networking.hostName = "media-server"; # Define your hostname.
networking.networkmanager.enable = true; # Easiest to use and most distros use this by default. networking.networkmanager.enable = true; # Easiest to use and most distros use this by default.
networking.firewall.allowedTCPPorts = [ 80 443 3000 ]; networking.firewall.allowedTCPPorts = [ 80 443 2049 ];
# Set your time zone. # Set your time zone.
time.timeZone = "America/Toronto"; time.timeZone = "America/Toronto";
@ -132,42 +132,11 @@
server = { server = {
enable = true; enable = true;
exports = '' exports = ''
/mnt/shares/import *(rw,fsid=0,no_subtree_check) /mnt/shares/import *(rw,fsid=0,no_subtree_check,nohide,insecure,crossmnt)
''; '';
}; };
}; };
# services.samba = {
# enable = true;
# package = pkgs.sambaFull;
# openFirewall = true;
# settings = {
# global = {
# "workgroup" = "WORKGROUP";
# "server string" = "media-server";
# "netbios name" = "media-server";
# "security" = "user";
# # "hosts allow" = "192.168.50. 127.0.0.1 localhost";
# # "hosts deny" = "0.0.0.0/0";
# "guest account" = "nobody";
# "map to guest" = "bad user";
# };
# "import" = {
# "path" = "/mnt/shares/import";
# "browseable" = "yes";
# "read only" = "no";
# "guest ok" = "no";
# "create mask" = "0644";
# "directory mask" = "0755";
# "force user" = "media";
# };
# };
# };
# services.samba-wsdd = {
# enable = true;
# openFirewall = true;
# };
programs.nix-ld.enable = true; programs.nix-ld.enable = true;
programs.nh = { programs.nh = {

View file

@ -6,7 +6,7 @@
fileSystems = fileSystems =
let let
opts = [ "nfsvers=4.1" "noatime" "noauto" ]; opts = [ "nfsvers=4.1" "noatime" "noauto" "x-systemd.automount" ];
in { in {
"/mnt/filez/media" = { "/mnt/filez/media" = {
@ -28,7 +28,7 @@
}; };
"/mnt/filez/photos" = { "/mnt/filez/photos" = {
device = "filez:/volume1/Photo Storage"; device = "filez:/volume1/Photos";
fsType = "nfs"; fsType = "nfs";
options = opts; options = opts;
}; };

View file

@ -3,15 +3,13 @@
{ {
fileSystems = fileSystems =
let let
automount-opts = "x-systemd.automount,noauto,users,x-systemd.idle-timeout=60,x-systemd.device-timeout=5s,x-systemd.mount-timeout=5s,noperm,uid=1000"; opts = [ "nfsvers=4.1" "noatime" "noauto" "x-systemd.automount" ];
# filez-opts = automount-opts + ",credentials=/etc/nixos/filez-secrets";
media-server-opts = automount-opts + ",credentials=/etc/nixos/media-server-secrets";
in { in {
"/mnt/import" = { "/mnt/import" = {
device = "//media-server/import"; device = "media-server:/import";
fsType = "smb3"; fsType = "nfs";
options = [ "${media-server-opts}" ]; options = opts;
}; };
}; };
} }