Skip to content

Commit

Permalink
fix(hosts): use latest lts linux kernel
Browse files Browse the repository at this point in the history
  • Loading branch information
gaelreyrol committed Jan 22, 2025
1 parent 80a3508 commit 06c45ad
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion hosts/iso/hardware-configuration.nix
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
nixpkgs.config.allowUnfree = true;

boot = {
kernelPackages = pkgs.unstable.linuxKernel.packages.linux_6_8;
kernelPackages = pkgs.unstable.linuxKernel.packages.linux_6_12;

# Needed for https://github.com/NixOS/nixpkgs/issues/58959
supportedFilesystems = lib.mkForce [ "btrfs" "reiserfs" "vfat" "f2fs" "xfs" "ntfs" "cifs" ];
Expand Down
2 changes: 1 addition & 1 deletion hosts/thinkpad/hardware-configuration.nix
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@
};
};

kernelPackages = pkgs.linuxKernel.packages.linux_6_1;
kernelPackages = pkgs.linuxKernel.packages.linux_6_6;
kernelModules = [ "kvm-intel" ];
extraModulePackages = [ ];
binfmt.emulatedSystems = [ "aarch64-linux" ];
Expand Down
2 changes: 1 addition & 1 deletion hosts/tower/hardware-configuration.nix
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@
kernelModules = [ ];
};

kernelPackages = pkgs.linuxKernel.packages.linux_6_1;
kernelPackages = pkgs.linuxKernel.packages.linux_6_6;
kernelModules = [ "kvm-intel" ];
extraModulePackages = [ ];

Expand Down

0 comments on commit 06c45ad

Please sign in to comment.