mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-26 08:53:21 +00:00
linux/generic.nix: Fix CONFIG_RUST
I thought it was module based, but it wasn't. Fixes https://github.com/NixOS/nixpkgs/pull/306790#issuecomment-2092485576 > This has broken [...] Rust support
This commit is contained in:
parent
9540fcd18b
commit
e768d95f41
@ -221,7 +221,7 @@ let
|
||||
config = {
|
||||
CONFIG_MODULES = "y";
|
||||
CONFIG_FW_LOADER = "m";
|
||||
CONFIG_RUST = lib.mkIf withRust "y";
|
||||
CONFIG_RUST = if withRust then "y" else "n";
|
||||
};
|
||||
});
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user