nixos-config/config/services/cifs.nix

6 lines
244 B
Nix
Raw Normal View History

2022-12-31 09:52:01 +00:00
{pkgs, ...}: {
2023-01-01 13:28:25 +00:00
environment.systemPackages = [pkgs.cifs-utils pkgs.lxqt.lxqt-policykit];
2022-12-31 09:52:01 +00:00
networking.firewall.extraCommands = ''iptables -t raw -A OUTPUT -p udp -m udp --dport 137 -j CT --helper netbios-ns'';
services.gvfs.enable = true;
}