about summary refs log tree commit diff
path: root/hosts/common/server
diff options
context:
space:
mode:
authorFranck Cuny <franck@fcuny.net>2022-04-06 07:20:19 -0700
committerFranck Cuny <franck@fcuny.net>2022-04-06 07:20:19 -0700
commite02aa9651bba1683877b29920d1d021aca8bcd13 (patch)
tree7c545b9f23f9f7fcddfeb21f1a753ba30fa713c5 /hosts/common/server
parentrefactor boot configuration to a module (diff)
downloadworld-e02aa9651bba1683877b29920d1d021aca8bcd13.tar.gz
refactor samba to a proper module
The list of public share is configurable too.
Diffstat (limited to 'hosts/common/server')
-rw-r--r--hosts/common/server/samba.nix33
1 files changed, 0 insertions, 33 deletions
diff --git a/hosts/common/server/samba.nix b/hosts/common/server/samba.nix
deleted file mode 100644
index 7df989d..0000000
--- a/hosts/common/server/samba.nix
+++ /dev/null
@@ -1,33 +0,0 @@
-{ config, pkgs, lib, ... }:
-
-{
-  services.samba = {
-    enable = true;
-    securityType = "user";
-    extraConfig = ''
-      workgroup = WORKGROUP
-      server string = tahoe
-      netbios name = tahoe
-      security = user
-      guest account = nobody
-      mangled names = no
-      client min protocol = SMB2
-      map to guest = bad user
-      ntlm auth = true
-    '';
-    shares = {
-      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";
-      };
-    };
-  };
-}