aboutsummaryrefslogtreecommitdiff
path: root/hosts/common/server/samba.nix
diff options
context:
space:
mode:
Diffstat (limited to 'hosts/common/server/samba.nix')
-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";
- };
- };
- };
-}