ifstate: 2.0.0 -> 2.0.1 (#443243)

authored by pyrox.dev and committed by GitHub 971d10cf 5980ef78

+4 -8
+2 -6
nixos/modules/services/networking/ifstate.nix
··· 137 137 138 138 cleanupSettings = lib.mkOption { 139 139 inherit (settingsFormat) type; 140 - default = { 141 - # required by json schema 142 - interfaces = { }; 143 - # https://codeberg.org/liske/ifstate/issues/118 144 - namespaces = { }; 145 - }; 140 + # required by json schema 141 + default.interfaces = { }; 146 142 description = "Content of IfState's initrd cleanup configuration file. See <https://ifstate.net/2.0/schema/> for details. This configuration gets applied before systemd switches to stage two. The goas is to deconfigurate the whole network in order to prevent access to services, before the firewall is configured. The stage two IfState configuration will start after the firewall is configured."; 147 143 }; 148 144 };
+2 -2
pkgs/by-name/if/ifstate/package.nix
··· 14 14 let 15 15 self = python3Packages.buildPythonApplication rec { 16 16 pname = "ifstate"; 17 - version = "2.0.0"; 17 + version = "2.0.1"; 18 18 pyproject = true; 19 19 20 20 src = fetchFromGitea { ··· 22 22 owner = "liske"; 23 23 repo = "ifstate"; 24 24 tag = version; 25 - hash = "sha256-YxLyiTVLN4nxc2ppqGGnYCGudbdPLSLV8EwDURtpO0U="; 25 + hash = "sha256-QxjziDlkbTxAVd3qA8u4+JT8NWJxBMVAp7G5Zma9d10="; 26 26 }; 27 27 28 28 postPatch = ''