diff --git a/modules/services/nfs.nix b/modules/services/nfs.nix index 2f9d3c4..40e4aa5 100644 --- a/modules/services/nfs.nix +++ b/modules/services/nfs.nix @@ -9,7 +9,7 @@ # Network shares samba = { package = pkgs.samba; - # ^^ `samba4Full` is compiled with avahi, ldap, AD etc support (compared to the default package, `samba` + # ^^ `samba4Full` is compiled with avahi, ldap, AD etc support (compared to the default package, `samba`. samba4Full gives issue, however) # Required for samba to register mDNS records for auto discovery # See https://github.com/NixOS/nixpkgs/blob/592047fc9e4f7b74a4dc85d1b9f5243dfe4899e3/pkgs/top-level/all-packages.nix#L27268 enable = true; @@ -19,6 +19,16 @@ writable = "true"; comment = "Hello world!"; }; + shares.violet = { + path = "/spinners/violet"; + writable = "true"; + comment = "Hello world!"; + }; + shares.ahwx = { + path = "/spinners/ahwx"; + writable = "true"; + comment = "Hello world!"; + }; }; avahi = { publish.enable = true;