diff --git a/home-manager/home.nix b/home-manager/home.nix index ab70a71..e5c062e 100644 --- a/home-manager/home.nix +++ b/home-manager/home.nix @@ -5793,8 +5793,8 @@ in { netflix tor-browser-bundle-bin virt-manager - qemu - quickemu + qemu_full + (quickemu.override { qemu = qemu_full; }) slack discord tdesktop diff --git a/nixos/common/configuration.nix b/nixos/common/configuration.nix index 684b87a..5c7a1b4 100644 --- a/nixos/common/configuration.nix +++ b/nixos/common/configuration.nix @@ -537,6 +537,28 @@ }; }; + services.samba-wsdd.enable = true; + services.samba-wsdd.openFirewall = true; + services.samba = { + enable = true; + package = pkgs.sambaFull; + 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.0. 127.0.0.1 localhost + hosts deny = 0.0.0.0/0 + guest account = nobody + map to guest = bad user + ''; + }; + services.tailscale = { enable = true; openFirewall = true;