Firewall update, add dig and nmap
This commit is contained in:
parent
6918146846
commit
bed0893720
3 changed files with 12 additions and 0 deletions
|
@ -22,6 +22,7 @@
|
||||||
};
|
};
|
||||||
|
|
||||||
environment.systemPackages = with pkgs; [
|
environment.systemPackages = with pkgs; [
|
||||||
|
nmapsi4 # Qt nmap GUI
|
||||||
arc-kde-theme
|
arc-kde-theme
|
||||||
arc-theme
|
arc-theme
|
||||||
kdePackages.plasma-browser-integration
|
kdePackages.plasma-browser-integration
|
||||||
|
|
|
@ -3,6 +3,8 @@
|
||||||
|
|
||||||
# List packages installed in system profile
|
# List packages installed in system profile
|
||||||
environment.systemPackages = with pkgs; [
|
environment.systemPackages = with pkgs; [
|
||||||
|
dig
|
||||||
|
nmap
|
||||||
nfs-utils # nfs network share tools
|
nfs-utils # nfs network share tools
|
||||||
sbctl # Secureboot Control
|
sbctl # Secureboot Control
|
||||||
wget # WebGet
|
wget # WebGet
|
||||||
|
|
|
@ -3,6 +3,15 @@
|
||||||
firewall = {
|
firewall = {
|
||||||
enable = true;
|
enable = true;
|
||||||
interfaces = {
|
interfaces = {
|
||||||
|
docker0 = {
|
||||||
|
allowedTCPPorts = [
|
||||||
|
22 # SSH
|
||||||
|
53 # DNS
|
||||||
|
80 # HTTP
|
||||||
|
443 # HTTPS
|
||||||
|
5696 # dsm-kmip server
|
||||||
|
];
|
||||||
|
};
|
||||||
tailscale0 = {
|
tailscale0 = {
|
||||||
allowedTCPPorts = [
|
allowedTCPPorts = [
|
||||||
22 # SSH
|
22 # SSH
|
||||||
|
|
Loading…
Reference in a new issue