diff --git a/hosts/blacksteel/services/samba.nix b/hosts/blacksteel/services/samba.nix index 316be04..df41374 100644 --- a/hosts/blacksteel/services/samba.nix +++ b/hosts/blacksteel/services/samba.nix @@ -2,15 +2,9 @@ services.samba = { enable = true; openFirewall = true; - shares = { - "share" = { - path = "/srv/samba/share"; - "read only" = "no"; - }; - "external" = { - path = "/mnt"; - "read only" = "no"; - }; + shares."external" = { + "path" = "/mnt"; + "read only" = "no"; }; }; @@ -18,8 +12,4 @@ enable = true; openFirewall = true; }; - - systemd.tmpfiles.rules = [ - "d /srv/samba/share 0755 guanranwang root" - ]; }