summaryrefslogtreecommitdiffstats
path: root/makefu/2configs/lanparty/samba.nix
blob: 0a9694f60c33677d24a827fe51085eab92f2d03f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
{config, ... }:{
  networking.firewall.allowedUDPPorts = [ 137 138 ];
  networking.firewall.allowedTCPPorts = [ 139 445 ];
  users.users.smbguest = {
    name = "smbguest";
    uid = config.ids.uids.smbguest;
    description = "smb guest user";
    home = "/data/lanparty";
    createHome = true;
    isNormalUser = true;
  };
  services.samba = {
    enable = true;
    enableNmbd = true;
    shares = {
      lanparty = {
        path = "/data/lanparty/";
        "read only" = "yes";
        browseable = "yes";
        "guest ok" = "yes";
      };
      share = {
        path = "/data/incoming";
        "read only" = "no";
        browseable = "yes";
        "guest ok" = "yes";
      };
    };
    extraConfig = ''
      guest account = smbguest
      map to guest = bad user
      # disable printing
      load printers = no
      printing = bsd
      printcap name = /dev/null
      disable spoolss = yes
    '';
  };
}