diff options
author | Franck Cuny <franck@fcuny.net> | 2022-03-05 18:07:06 -0800 |
---|---|---|
committer | Franck Cuny <franck@fcuny.net> | 2022-03-05 18:08:19 -0800 |
commit | a7fd5d3e5107acd780596b83c0e674c68fb2798d (patch) | |
tree | b73d6bdba8de60e8bea639f9728868caf2d20b2f /hosts/common | |
parent | tahoe: remove creation of some directories (diff) | |
download | world-a7fd5d3e5107acd780596b83c0e674c68fb2798d.tar.gz |
samba: fix path for music, add videos
Diffstat (limited to '')
-rw-r--r-- | hosts/common/server/samba.nix | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/hosts/common/server/samba.nix b/hosts/common/server/samba.nix index d3bb857..7df989d 100644 --- a/hosts/common/server/samba.nix +++ b/hosts/common/server/samba.nix @@ -17,7 +17,13 @@ ''; shares = { music = { - path = "/data/media/music"; + path = "/data/fast/music"; + browseable = "yes"; + "read only" = "yes"; + "guest ok" = "yes"; + }; + videos = { + path = "/data/fast/videos"; browseable = "yes"; "read only" = "yes"; "guest ok" = "yes"; |