Home Explore Blog Models CI



nixpkgs

8th chunk of `nixos/doc/manual/release-notes/rl-2003.section.md`
41d0642dde3a1b1f5371ba7e467cde13475141f5d4e4a9aa0000000100001051
      services.postfix.relayDomains = [ "hash:/var/lib/mailman/data/postfix_domains" ];
      services.postfix.config.transport_maps = [ "hash:/var/lib/mailman/data/postfix_lmtp" ];
      services.postfix.config.local_recipient_maps = [ "hash:/var/lib/mailman/data/postfix_lmtp" ];
    }
    ```

    This is because some users may want to include other values in these lists as well, and this was not possible if they were set automatically by the Mailman module. It would not have been possible to just concatenate values from multiple modules each setting the values they needed, because the order of elements in the list is significant.

- The LLVM versions 3.5, 3.9 and 4 (including the corresponding CLang versions) have been dropped.

- The `networking.interfaces.*.preferTempAddress` option has been replaced by `networking.interfaces.*.tempAddress`. The new option allows better control of the IPv6 temporary addresses, including completely disabling them for interfaces where they are not needed.

- Rspamd was updated to version 2.2. Read [ the upstream migration notes](https://rspamd.com/doc/migration.html#migration-to-rspamd-20) carefully. Please be especially aware that some modules were removed and the default Bayes backend is now Redis.

- The `*psu` versions of oraclejdk8 have been removed as they aren't provided by upstream anymore.

- The `services.dnscrypt-proxy` module has been removed as it used the deprecated version of dnscrypt-proxy. We've added [services.dnscrypt-proxy2.enable](options.html#opt-services.dnscrypt-proxy2.enable) to use the supported version. This module supports configuration via the Nix attribute set [services.dnscrypt-proxy2.settings](options.html#opt-services.dnscrypt-proxy2.settings), or by passing a TOML configuration file via [services.dnscrypt-proxy2.configFile](options.html#opt-services.dnscrypt-proxy2.configFile).

  ```nix
  {
    # Example configuration:
    services.dnscrypt-proxy2.enable = true;
    services.dnscrypt-proxy2.settings = {
      listen_addresses = [ "127.0.0.1:43" ];
      sources.public-resolvers = {
        urls = [
          "https://download.dnscrypt.info/resolvers-list/v2/public-resolvers.md"
        ];
        cache_file = "public-resolvers.md";
        minisign_key = "RWQf6LRCGA9i53mlYecO4IzT51TGPpvWucNSCh1CBM0QTaLn73Y7GFO3";
        refresh_delay = 72;
      };
    };

    services.dnsmasq.enable = true;
    services.dnsmasq.servers = [ "127.0.0.1#43" ];
  }
  ```

- `qesteidutil` has been deprecated in favor of `qdigidoc`.

- sqldeveloper_18 has been removed as it's not maintained anymore, sqldeveloper has been updated to version `19.4`. Please note that this means that this means that the oraclejdk is now required. For further information please read the [release notes](https://www.oracle.com/technetwork/developer-tools/sql-developer/downloads/sqldev-relnotes-194-5908846.html).

- Haskell `env` and `shellFor` dev shell environments now organize dependencies the same way as regular builds. In particular, rather than receiving all the different lists of dependencies mashed together as one big list, and then partitioning into Haskell and non-Hakell dependencies, they work from the original many different dependency parameters and don't need to algorithmically partition anything.

  This means that if you incorrectly categorize a dependency, e.g. non-Haskell library dependency as a `buildDepends` or run-time Haskell dependency as a `setupDepends`, whereas things would have worked before they may not work now.

- The gcc-snapshot-package has been removed. It's marked as broken for \>2 years and used to point to a fairly old snapshot from the gcc7-branch.

- The nixos-build-vms8 -script now uses the python test-driver.

- The riot-web package now accepts configuration overrides as an attribute set instead of a string. A formerly used JSON configuration can be converted to an attribute set with `builtins.fromJSON`.

  The new default configuration also disables automatic guest account registration and analytics to improve privacy. The previous behavior can be restored by setting `config.riot-web.conf = { disable_guests = false; piwik = true; }`.

Title: NixOS Service Updates, Package Removals, and Configuration Refinements
Summary
NixOS undergoes significant updates and removals. Mailman's Postfix configuration now requires manual setup for `relayDomains`, `transport_maps`, and `local_recipient_maps` to allow user customization. Several packages are removed: LLVM/Clang versions (3.5, 3.9, 4), `*psu` oraclejdk8, `gcc-snapshot-package`, and `sqldeveloper_18` (replaced by v19.4, now requiring oraclejdk). `networking.interfaces.*.preferTempAddress` is replaced by `tempAddress` for better IPv6 temporary address control. `dnscrypt-proxy` is superseded by `dnscrypt-proxy2`, configurable via attribute sets or TOML. Rspamd updates to 2.2, with migration notes on module removals and Redis as the default Bayes backend. `qesteidutil` is deprecated for `qdigidoc`. Haskell dev shells now enforce stricter dependency categorization. The `nixos-build-vms8` script uses the Python test-driver. `riot-web` config now uses attribute sets, defaulting to enhanced privacy by disabling guest accounts and analytics.