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
4 changes: 2 additions & 2 deletions named-hosts/matic/default.nix
Original file line number Diff line number Diff line change
Expand Up @@ -43,8 +43,8 @@ inputs.nixpkgs.lib.nixosSystem {
boot.loader.efi.canTouchEfiVariables = true;
boot.loader.timeout = 3;

# Latest kernel for AMD AI 300 support
boot.kernelPackages = pkgs.linuxPackages_latest;
# Pin kernel to 6.18 for CrowdStrike Falcon compatibility (RFM on 6.19)
boot.kernelPackages = pkgs.linuxPackages_6_18;
Comment thread
shunkakinoki marked this conversation as resolved.
Comment thread
shunkakinoki marked this conversation as resolved.

# Networking
networking.hostName = "matic";
Expand Down
3 changes: 3 additions & 0 deletions overlays/default.nix
Original file line number Diff line number Diff line change
Expand Up @@ -38,6 +38,9 @@
config = prev.config;
overlays = [ ];
};
# deno 2.6.10 on nixpkgs-unstable has broken check phase (integration_tests vs integration_test)
# Use nightly (master) which has the fix and is in the binary cache
deno = final.nightlyPkgs.deno;
codex = final.nightlyPkgs.codex;
claude-code = final.nightlyPkgs.claude-code;
opencode = final.nightlyPkgs.opencode;
Expand Down
Loading