non-lts kernel, warn fix
This commit is contained in:
parent
e05c82f700
commit
862a72a0ab
2 changed files with 4 additions and 1 deletions
|
|
@ -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
|
||||||
];
|
];
|
||||||
})
|
})
|
||||||
];
|
];
|
||||||
|
|
|
||||||
|
|
@ -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;
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue