Kieran's opinionated (and probably slightly dumb) nix config

feat: enable firewall and allow ports 4455 for obs in configuration.nix

Changed files
+7
moonlark
+7
moonlark/configuration.nix
···
};
};
services.devmon.enable = true;
services.gvfs.enable = true;
services.udisks2.enable = true;
···
};
};
+
networking.firewall = {
+
enable = true;
+
allowedTCPPorts = [ 4455 ];
+
allowedUDPPorts = [ 4455 ];
+
};
+
+
services.devmon.enable = true;
services.gvfs.enable = true;
services.udisks2.enable = true;