Samba: Difference between revisions
imported>Fadenb m →excerpt of /etc/nixos/configuration.nix: whitespace removal |
imported>Mic92 No edit summary |
||
| Line 1: | Line 1: | ||
== Motivation == | == Motivation == | ||
This guide will help you on how to use samba on nixos. | This guide will help you on how to use samba on nixos. | ||
== cifs mount == | |||
The following snippets shows how to mount a CIFS (Windows) share in NixOS. | |||
Replace all <code><FIELDS></code> with concrete values: | |||
<syntaxhighlight lang="nix"> | |||
{ | |||
fileSystems."/mnt/share" = { | |||
device = "//<IP_OR_HOST>/path/to/share"; | |||
fsType = "cifs"; | |||
options = let | |||
# this line prevents hanging on network split | |||
automount_opts = "x-systemd.automount,noauto,x-systemd.idle-timeout=60,x-systemd.device-timeout=5s,x-systemd.mount-timeout=5s"; | |||
in ["${automount_opts},credentials=/etc/nixos/smb-secrets"]; | |||
}; | |||
} | |||
</syntaxhighlight> | |||
Also create /etc/nixos/smb-secrets with the following content (<code>domain=</code> can be optional) | |||
<syntaxhighlight lang="nix"> | |||
username=<USERNAME> | |||
domain=<DOMAIN> | |||
password=<PASSWORD> | |||
</syntaxhighlight> | |||
== excerpt of /etc/nixos/configuration.nix == | == excerpt of /etc/nixos/configuration.nix == | ||