diff --git a/modules/essentials/settings.nix b/modules/essentials/settings.nix index a989dc0..8e61c5f 100644 --- a/modules/essentials/settings.nix +++ b/modules/essentials/settings.nix @@ -3,7 +3,8 @@ lib, ... }: -{ # new things https://git.voronind.com/voronind/nix/src/commit/c4a70068a474e9f30b8e367b69520c563e02fbd9/system/nix.nix +{ + # new things https://git.voronind.com/voronind/nix/src/commit/c4a70068a474e9f30b8e367b69520c563e02fbd9/system/nix.nix system.nixos.label = "default"; nix = { diff --git a/modules/vds/containers/3x-ui.nix b/modules/vds/containers/3x-ui.nix index 37c1272..e32783d 100644 --- a/modules/vds/containers/3x-ui.nix +++ b/modules/vds/containers/3x-ui.nix @@ -28,10 +28,16 @@ networking.firewall = { allowedUDPPortRanges = [ - { from = 14380; to = 15380; } + { + from = 14380; + to = 15380; + } ]; allowedTCPPortRanges = [ - { from = 14380; to = 15380; } + { + from = 14380; + to = 15380; + } ]; }; virtualisation.oci-containers.backend = "podman";