Files
nixos-config/modules/samba/default.nix
Morten Olsen 6a41699dc3 init
2023-09-12 08:28:05 +02:00

7 lines
180 B
Nix

{ config, pkgs, ... }:
{
services.gvfs.enable = true;
networking.firewall.extraCommands = ''iptables -t raw -A OUTPUT -p udp -m udp --dport 137 -j CT --helper netbios-ns'';
}