-
Notifications
You must be signed in to change notification settings - Fork 3
Description
Hi,
I followed your post here and would like to build a basic Nixos with the patched ath10k kernel.
I managed to run nixos-rebuild after this to my configuration.nix
environment.systemPackages = with pkgs; [
iw
(pkgs.callPackage ./kernel-module-ath-patched.nix {})
];
The kernel compilation did run but the kernel in the build did not seem to be replaced.
I went through the files in the repository and only found kernel-module-ath-patched in nixosModules/nixos-nas/configuration.nix & packages/default.nix. I tried to find how to build this in the most straightforward way. Unfortunately I am still clueless and have no idea how all the files are linked together.
Appreciate if you could advise on the most straightforward way to build a image with the patched kernel. If not, could you give me some keywords to look up on that could help me achieve that?