Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions nixos/doc/manual/release-notes/rl-2411.section.md
Original file line number Diff line number Diff line change
Expand Up @@ -309,6 +309,9 @@
- The `mautrix-signal` module was adapted to incorporate the configuration changes that resulted from the update to the mautrix bridgev2 architecture. Pre-0.7.0 configurations should continue to work.
In case you want to update your configuration, make sure to check the NixOS manual.

- `cargo-tauri` has been updated to major version 2. Please review [the migration guide](https://tauri.app/start/migrate/from-tauri-1/).
v1 of `cargo-tauri` is still available as `cargo-tauri_1`, but will be removed in future releases.

- The nvidia driver no longer defaults to the proprietary driver starting with version 560. You will need to manually set `hardware.nvidia.open` to select the proprietary or open driver.

- `postgresql` no longer accepts the `enableSystemd` override. Use `systemdSupport` instead.
Expand Down
4 changes: 2 additions & 2 deletions pkgs/by-name/al/alcom/package.nix
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
buildDotnetModule,
cargo-about,
cargo-tauri,
cargo-tauri_1,
dotnetCorePackages,
fetchFromGitHub,
fetchNpmDeps,
Expand Down Expand Up @@ -59,7 +59,7 @@ rustPlatform.buildRustPackage {

nativeBuildInputs = [
cargo-about
cargo-tauri.hook
cargo-tauri_1.hook
dotnetSdk
nodejs
npmHooks.npmConfigHook
Expand Down
4 changes: 2 additions & 2 deletions pkgs/by-name/al/alexandria/package.nix
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
fetchNpmDeps,
gtk3,
wrapGAppsHook3,
cargo-tauri,
cargo-tauri_1,
}:

rustPlatform.buildRustPackage rec {
Expand Down Expand Up @@ -43,7 +43,7 @@ rustPlatform.buildRustPackage rec {
};

nativeBuildInputs = [
cargo-tauri.hook
cargo-tauri_1.hook
nodejs
npmHooks.npmConfigHook
pkg-config
Expand Down
Loading