-
Notifications
You must be signed in to change notification settings - Fork 0
fix(matic): pin kernel to 6.17 for Falcon sensor compatibility #1898
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change | ||||
|---|---|---|---|---|---|---|
|
|
@@ -52,8 +52,8 @@ import ../../hosts/nixos { | |||||
| "tpm2-device=auto" | ||||||
| ]; | ||||||
|
|
||||||
| # Pin kernel to 6.18 for CrowdStrike Falcon compatibility (RFM on 6.19) | ||||||
| boot.kernelPackages = pkgs.linuxPackages_6_18; | ||||||
| # Pin kernel: Falcon sensor 7.31.0 lacks kernel module for 6.18+, RFM on 6.19 | ||||||
| boot.kernelPackages = pkgs.linuxPackages_6_17; | ||||||
|
Comment on lines
+55
to
+56
Contributor
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. The Linux kernel has not yet released versions 6.17 or 6.18 (the current stable releases are in the 6.12/6.13 range). Consequently, Please use a valid, existing kernel package attribute from Nixpkgs (such as
Contributor
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more.
In that rev:
So as soon as The only recent kernels available in this nixpkgs are Options:
Contributor
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. P0: Prompt for AI agents
Suggested change
|
||||||
|
|
||||||
| # Filesystem hardening | ||||||
| boot.kernel.sysctl = { | ||||||
|
|
||||||
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
The updated comment is clearer, but consider adding more tracking context to prevent this pin from becoming permanent technical debt. Suggest including: (1) a link to vendor documentation or support case, (2) an explicit review date or owner, and (3) removal criteria (e.g., "remove when Falcon ≥7.32 supports kernel 6.18+"). This ensures the workaround has a clear lifecycle and doesn't silently persist after the underlying issue is resolved.
Agent: 🏛 Architecture •
• 
Prompt for Agent