Merge branch 'master' of github.com:Kropatz/dotfiles
This commit is contained in:
7
modules/firewall.nix
Normal file
7
modules/firewall.nix
Normal file
@@ -0,0 +1,7 @@
|
||||
{ config, pkgs, lib, inputs, vars, ... }:
|
||||
let
|
||||
allowedUDPPortRanges = vars.udpRanges;
|
||||
in
|
||||
{
|
||||
networking.firewall.allowedUDPPortRanges = allowedUDPPortRanges;
|
||||
}
|
||||
5
modules/wireshark.nix
Normal file
5
modules/wireshark.nix
Normal file
@@ -0,0 +1,5 @@
|
||||
{ config, pkgs, ... }:
|
||||
{
|
||||
programs.wireshark.enable = true;
|
||||
programs.wireshark.package = pkgs.wireshark;
|
||||
}
|
||||
Reference in New Issue
Block a user