diff --git a/nixos/hosts/frankfurt-linode-01/default.nix b/nixos/hosts/frankfurt-linode-01/default.nix
index b7de51bb..ae1d4217 100644
--- a/nixos/hosts/frankfurt-linode-01/default.nix
+++ b/nixos/hosts/frankfurt-linode-01/default.nix
@@ -1,9 +1,4 @@
-{ inputs, lib, modulesPath, hostname, ... }: 
-let 
-  # ipOffice = "";
-  ipIfargle = "97.71.91.121";
-  ipSysctl = "172.185.76.221";
-in {
+{ inputs, lib, modulesPath, hostname, ... }: {
   imports = [ 
     (modulesPath + "/profiles/qemu-guest.nix")
     inputs.ip-whitelist.nixosModules.default
@@ -14,18 +9,6 @@ in {
     ./wireguard.nix
   ];
 
-  # SSH Whitelist for certain IP's
-  networking.firewall.ipBasedAllowedTCPPorts = [
-    {
-      port = 22;
-      ips = [
-        # ipOffice
-        ipIfargle
-        ipSysctl
-      ];
-    }
-  ];
-
   boot.initrd.availableKernelModules = [ "virtio_pci" "virtio_scsi" "ahci" "sd_mod" ];
   boot.initrd.kernelModules = [ ];
   boot.kernelModules = [ ];
diff --git a/nixos/hosts/milan-linode-01/default.nix b/nixos/hosts/milan-linode-01/default.nix
index d0d00de2..401cc66d 100644
--- a/nixos/hosts/milan-linode-01/default.nix
+++ b/nixos/hosts/milan-linode-01/default.nix
@@ -1,4 +1,8 @@
-{ hostname, lib, modulesPath, ... }: {
+{ hostname, lib, modulesPath, ... }: let 
+  # ipOffice = "";
+  ipIfargle = "97.71.91.121";
+  ipSysctl = "172.185.76.221";
+in {
   imports = [ 
     (modulesPath + "/profiles/qemu-guest.nix")
     (import ../../common/containers/derp.nix { domainName = "milan.sysctl.io"; })
@@ -6,7 +10,19 @@
     ../../common/services/podman.nix
   ];
 
-  boot.initrd.availableKernelModules = [ "virtio_pci" "virtio_scsi" "ahci" "sd_mod" ];
+   # SSH Whitelist for certain IP's
+  networking.firewall.ipBasedAllowedTCPPorts = [
+    {
+      port = 22;
+      ips = [
+        # ipOffice
+        ipIfargle
+        ipSysctl
+      ];
+    }
+  ];
+
+ boot.initrd.availableKernelModules = [ "virtio_pci" "virtio_scsi" "ahci" "sd_mod" ];
   boot.initrd.kernelModules = [ ];
   boot.kernelModules = [ ];
   boot.extraModulePackages = [ ];