diff --git a/home-manager/home.nix b/home-manager/home.nix index c459b3a..e38c7e1 100644 --- a/home-manager/home.nix +++ b/home-manager/home.nix @@ -5525,9 +5525,7 @@ in { tor-browser-bundle-bin virt-manager qemu - (unstable.quickemu.override { - qemu = unstable.qemu.override { smbdSupport = true; }; - }) + quickemu slack discord tdesktop diff --git a/nixos/common/configuration.nix b/nixos/common/configuration.nix index efd07b3..edc3b50 100644 --- a/nixos/common/configuration.nix +++ b/nixos/common/configuration.nix @@ -522,8 +522,6 @@ allowedTCPPorts = [ # Calibre wireless 9090 - # Samba - 5357 # Syncthing 22000 ]; @@ -537,8 +535,6 @@ allowedUDPPorts = [ # Calibre wireless 9090 - # Samba - 3702 # Syncthing 21027 22000 @@ -552,47 +548,6 @@ ]; }; }; - services.samba-wsdd.enable = true; - services.samba = { - enable = true; - openFirewall = true; - securityType = "user"; - extraConfig = '' - workgroup = WORKGROUP - server string = smbnix - netbios name = smbnix - security = user - #use sendfile = yes - #max protocol = smb2 - # note: localhost is the ipv6 localhost ::1 - hosts allow = 192.168.122. 192.168.0. 127.0.0.1 localhost - hosts deny = 0.0.0.0/0 - guest account = nobody - map to guest = bad user - ''; - shares = { - public = { - path = "/mnt/Shares/Public"; - browseable = "yes"; - "read only" = "no"; - "guest ok" = "yes"; - "create mask" = "0644"; - "directory mask" = "0755"; - "force user" = "zeorin"; - "force group" = "zeorin"; - }; - private = { - path = "/mnt/Shares/Private"; - browseable = "yes"; - "read only" = "no"; - "guest ok" = "no"; - "create mask" = "0644"; - "directory mask" = "0755"; - "force user" = "zeorin"; - "force group" = "zeorin"; - }; - }; - }; services.tailscale = { enable = true;