Unverified Commit b1475aee authored by nixpkgs-ci[bot]'s avatar nixpkgs-ci[bot] Committed by GitHub
Browse files

Merge master into staging-next

parents 02bde57e 18dcbe9f
Loading
Loading
Loading
Loading
+6 −0
Original line number Diff line number Diff line
@@ -20768,6 +20768,12 @@
    githubId = 20863431;
    name = "Prithak S.";
  };
  priyaananthasankar = {
    name = "Priya Ananthasankar";
    github = "priyaananthasankar";
    githubId = 10415876;
    email = "priyagituniverse@gmail.com";
  };
  ProducerMatt = {
    name = "Matthew Pherigo";
    email = "ProducerMatt42@gmail.com";
+0 −7
Original line number Diff line number Diff line
@@ -315,13 +315,6 @@ with lib.maintainers;
    enableFeatureFreezePing = true;
  };

  deepin = {
    members = [ wineee ];
    scope = "Maintain deepin desktop environment and related packages.";
    shortName = "DDE";
    enableFeatureFreezePing = true;
  };

  deshaw = {
    # Verify additions to this team with at least one already existing member of the team.
    members = [
+6 −0
Original line number Diff line number Diff line
@@ -48,6 +48,8 @@

- [LibreTranslate](https://libretranslate.com), a free and open source machine translation API. Available as [services.libretranslate](#opt-services.libretranslate.enable).

- [Linyaps](https://linyaps.org.cn/), a cross-distribution package manager with sandboxed apps and shared runtime. Available as [services.linyaps](#opt-services.linyaps.enable).

- [tlsrpt-reporter](https://github.com/sys4/tlsrpt-reporter), an application suite to generate and deliver TLSRPT reports. Available as [services.tlsrpt](#opt-services.tlsrpt.enable).

- [Chhoto URL](https://github.com/SinTan1729/chhoto-url), a simple, blazingly fast, selfhosted URL shortener with no unnecessary features, written in Rust. Available as [services.chhoto-url](#opt-services.chhoto-url.enable).
@@ -264,6 +266,8 @@

- Due to [deprecation of gnome-session X11 support](https://blogs.gnome.org/alatiera/2025/06/08/the-x11-session-removal/), `services.desktopManager.pantheon` now defaults to pantheon-wayland session. The X11 session has been removed, see [this issue](https://github.com/elementary/session-settings/issues/91) for details.

- `bcachefs` file systems will now use the out-of-tree module for supported kernels. The in-tree module is unmaintained and users are strongly recommended to switch to kernels that support the out-of-tree module.

- `services.gitea` supports sending notifications with sendmail again. To do this, activate the parameter `services.gitea.mailerUseSendmail` and configure SMTP server.

- `networking.wireless.networks.<name>` now has an option to specify SSID, hence allowing duplicated SSID setup. The BSSID option is added along side with this.
@@ -313,6 +317,8 @@

- `services.pds` has been renamed to `services.bluesky-pds`.

- `services.xserver.desktopManager.deepin` and associated packages have been removed due to being unmaintained. See issue [#422090](https://github.com/NixOS/nixpkgs/issues/422090) for more details.

- The new option [networking.ipips](#opt-networking.ipips) has been added to create IP within IP kind of tunnels (including 4in6, ip6ip6 and ipip).
  With the existing [networking.sits](#opt-networking.sits) option (6in4), it is now possible to create all combinations of IPv4 and IPv6 encapsulation.

+2 −1
Original line number Diff line number Diff line
@@ -63,7 +63,8 @@ in
        type = with lib.types; nullOr int;
        description = ''
          Maximum total amount of memory (in bytes) that can be stored in the zram
          swap devices.
          swap devices. If set, the smaller one of this option and memoryPercent would
          be used.
          This doesn't define how much memory will be used by the zram swap devices.
        '';
      };
+1 −1
Original line number Diff line number Diff line
@@ -169,7 +169,7 @@ in
                options.lengthScale
                "--noise-scale"
                options.noiseScale
                "--noise-w"
                "--noise-w-scale"
                options.noiseWidth
              ]
              ++ lib.optionals options.streaming [
Loading