non-lts kernel, warn fix

This commit is contained in:
Sergei Poljanski 2025-12-25 13:38:16 +02:00
commit 862a72a0ab
Signed by: asxpi
GPG key ID: 4F8851660FA4121B
2 changed files with 4 additions and 1 deletions

View file

@ -17,7 +17,7 @@
./configuration.nix ./configuration.nix
({ pkgs, inputs, ... }: { ({ pkgs, inputs, ... }: {
environment.systemPackages = [ environment.systemPackages = [
inputs.claude-code-nix.packages.${pkgs.system}.default inputs.claude-code-nix.packages.${pkgs.stdenv.hostPlatform.system}.default
]; ];
}) })
]; ];

View file

@ -2,6 +2,9 @@
{ config, pkgs, lib, ... }: { config, pkgs, lib, ... }:
{ {
# Use latest kernel instead of LTS
boot.kernelPackages = pkgs.linuxPackages_latest;
# boot.loader.systemd-boot.enable = true; # Disabled for GRUB # boot.loader.systemd-boot.enable = true; # Disabled for GRUB
boot.loader.efi.canTouchEfiVariables = true; boot.loader.efi.canTouchEfiVariables = true;