KSMBD

From NixOS Wiki
Revision as of 06:20, 30 April 2024 by Mic92 (talk | contribs) (fix markup)
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)

KSMBD is a linux kernel server which implements SMB3 protocol in kernel space for sharing files over network.

Example configuration

The following example will create a read-only file share of /var/lib/ksmbd with guest login enabled.

{
  services.ksmbd.enable = true;
  services.ksmbd.openFirewall = true;
  services.ksmbd.shares.public = {
    path = "/var/lib/ksmbd";
    "read only" = true;
    browseable = "yes";
    "guest ok" = "yes";
    comment = "Public samba share.";
  };
}