···35353636- `stalwart-mail` since `0.13.0` "introduces a significant redesign of the MTA’s delivery and queueing subsystem". See [the upgrading announcement for the `0.13.0` release](https://github.com/stalwartlabs/stalwart/blob/89b561b5ca1c5a11f2a768b4a2cfef0f473b7a01/UPGRADING.md#upgrading-from-v012x-and-v011x-to-v013x).
37373838+- Greetd and its original greeters (`tuigreet`, `gtkgreet`, `qtgreet`, `regreet`, `wlgreet`) were moved from `greetd` namespace to top level (`greetd.tuigreet` -> `tuigreet`, `greetd.greetd` -> `greetd`, etc). The original attrs are available for compatibility as passthrus of `greetd`, but will emit a warning. They will be removed in future releases.
3939+3840- The `archipelago-minecraft` package was removed, as upstream no longer provides support for the Minecraft APWorld.
39414042- `navidrome` 0.58.0 introduces [multi-library support](https://www.navidrome.org/docs/usage/multi-library/)
···172172 assertion = cfg.settings.dynamic_tuning -> cfg.settings.daemon;
173173 message = "`services.tuned.settings.dynamic_tuning` requires `services.tuned.settings.daemon` to be `true`.";
174174 }
175175+176176+ {
177177+ assertion = cfg.ppdSupport -> config.services.upower.enable;
178178+ message = "`services.tuned.ppdSupport` requires `services.upower` to be enabled.";
179179+ }
175180 ]
176181 # Declare service conflicts, also sourced from `tuned.service`
177182 ++
···218223 # Many DEs (like GNOME and KDE Plasma) enable PPD by default
219224 # Let's try to make it easier to transition by only enabling this module
220225 power-profiles-daemon.enable = false;
226226+227227+ # NOTE: Required by `tuned-ppd` for handling power supply changes
228228+ # (i.e., `services.tuned.ppdSettings.main.battery_detection`)
229229+ # https://github.com/NixOS/nixpkgs/issues/431105
230230+ upower.enable = lib.mkIf cfg.ppdSupport true;
221231 };
222232223233 systemd = {
+1-1
nixos/modules/services/hardware/udev.nix
···6060 # We only include the out output here to avoid needing to include all
6161 # other outputs in the installer tests as well
6262 # We only need the udevadm command anyway
6363- pkgs.systemdMinimal.out
6363+ pkgs.buildPackages.systemdMinimal.out
6464 ];
6565 }
6666 ''
···116116goBuild (finalAttrs: {
117117 pname = "ollama";
118118 # don't forget to invalidate all hashes each update
119119- version = "0.11.0";
119119+ version = "0.11.3";
120120121121 src = fetchFromGitHub {
122122 owner = "ollama";
123123 repo = "ollama";
124124 tag = "v${finalAttrs.version}";
125125- hash = "sha256-po7BxJAj9eOpOaXsLDmw6/1RyjXPtXza0YUv0pVojZ0=";
126126- fetchSubmodules = true;
125125+ hash = "sha256-FghgCtVQIxc9qB5vZZlblugk6HLnxoT8xanZK+N8qEc=";
127126 };
128127129128 vendorHash = "sha256-SlaDsu001TUW+t9WRp7LqxUSQSGDF1Lqu9M1bgILoX4=";
+8
pkgs/by-name/op/open-policy-agent/package.nix
···6161 # Skip tests that require network, not available in the darwin sandbox
6262 "TestHTTPSClient"
6363 "TestHTTPSNoClientCerts"
6464+ "TestSocketHTTPGetRequest"
6565+6666+ # Flaky
6767+ "TestBenchMainWithBundleRegoVersion"
6868+ "TestClientTLSWithCustomCACert"
6969+ "TestECR"
7070+ "TestManagerWithOPATelemetryUpdateLoop"
6471 ]
6572 ++ lib.optionals (!enableWasmEval) [
6673 "TestRegoTargetWasmAndTargetPluginDisablesIndexingTopdownStages"
···8188 # remove tests that have "too many open files"/"no space left on device" issues on darwin in hydra
8289 + lib.optionalString stdenv.hostPlatform.isDarwin ''
8390 rm v1/server/server_test.go
9191+ rm v1/server/server_bench_test.go
8492 '';
85938694 postInstall = ''
···11-# NOTE: Order matters! Put the oldest version first, and the newest version last.
22-# NOTE: Make sure the supportedGpuTargets are in order of oldest to newest.
33-# You can update the supportedGpuTargets by looking at the CMakeLists.txt file.
44-# HIP is here: https://github.com/icl-utk-edu/magma/blob/v2.9.0/CMakeLists.txt#L290
55-# CUDA works around magma's wrappers and uses FindCUDAToolkit directly
66-[
77- {
88- version = "2.9.0";
99- hash = "sha256-/3f9Nyaz3+w7+1V5CwZICqXMOEOWwts1xW/a5KgsZBw=";
1010- supportedGpuTargets = [
1111- "700"
1212- "701"
1313- "702"
1414- "703"
1515- "704"
1616- "705"
1717- "801"
1818- "802"
1919- "803"
2020- "805"
2121- "810"
2222- "900"
2323- "902"
2424- "904"
2525- "906"
2626- "908"
2727- "909"
2828- "90c"
2929- "1010"
3030- "1011"
3131- "1012"
3232- "1030"
3333- "1031"
3434- "1032"
3535- "1033"
3636- ];
3737- }
3838-]