MyNixOS website logo
option

services.samba.shares

A set describing shared resources. See man smb.conf for options.

Declarations
Type
attribute set of attribute set of unspecified value
Default
{ }
Example
{ public =
  { path = "/srv/public";
    "read only" = true;
    browseable = "yes";
    "guest ok" = "yes";
    comment = "Public samba share.";
  };
}