This commit is contained in:
2026-02-19 17:48:58 +03:00
parent f187375faa
commit 0c931eba89
2 changed files with 10 additions and 3 deletions
+2 -1
View File
@@ -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 = {
+8 -2
View File
@@ -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";