From a31ac455cba254a50881aa635237595a7292a0d3 Mon Sep 17 00:00:00 2001 From: Doloro1978 Date: Sun, 25 Jan 2026 15:39:24 +0000 Subject: [PATCH] update(laptop): using latest linux ver --- hosts/doloro-laptop/nixos.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/hosts/doloro-laptop/nixos.nix b/hosts/doloro-laptop/nixos.nix index 6cc44e4..bdcd16c 100644 --- a/hosts/doloro-laptop/nixos.nix +++ b/hosts/doloro-laptop/nixos.nix @@ -31,8 +31,8 @@ in # Use the systemd-boot EFI boot loader. boot.loader.systemd-boot.enable = true; boot.loader.efi.canTouchEfiVariables = true; - boot.kernelPackages = pkgs.linuxPackages_6_12; # Hibernate works on 6.12 but not on latest - # boot.kernelPackages = pkgs.linuxPackages_zen; # Hibernate works on 6.12 but not on latest + # boot.kernelPackages = pkgs.linuxPackages_6_12; # Hibernate works on 6.12 but not on latest + boot.kernelPackages = pkgs.linuxPackages_latest; # Unpinned the linux version for now.. as i am not using hibernate that often networking.hostName = "doloro-nixos-laptop"; # Define your hostname. security.rtkit.enable = true;