aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMark Nipper <nipsy@bitgnome.net>2026-09-12 15:44:39 -0700
committerMark Nipper <nipsy@bitgnome.net>2026-09-12 15:44:39 -0700
commite1f4587b4ad4710dc75321e63844e9f8f587bd01 (patch)
tree5c579f25f69280ae167c641a2e6beab45b97cbe1
parent324cb10b4562a0d3e318f2d067f989dd8a0dabcc (diff)
downloadnix-e1f4587b4ad4710dc75321e63844e9f8f587bd01.tar
nix-e1f4587b4ad4710dc75321e63844e9f8f587bd01.tar.gz
nix-e1f4587b4ad4710dc75321e63844e9f8f587bd01.tar.bz2
nix-e1f4587b4ad4710dc75321e63844e9f8f587bd01.tar.lz
nix-e1f4587b4ad4710dc75321e63844e9f8f587bd01.tar.xz
nix-e1f4587b4ad4710dc75321e63844e9f8f587bd01.tar.zst
nix-e1f4587b4ad4710dc75321e63844e9f8f587bd01.zip
Add kerneol overlay to test older 7.0 kernel @ginaz
-rw-r--r--flake.nix4
-rw-r--r--hosts/ginaz/default.nix6
-rw-r--r--overlays/default.nix14
3 files changed, 12 insertions, 12 deletions
diff --git a/flake.nix b/flake.nix
index 024652e..5feb63e 100644
--- a/flake.nix
+++ b/flake.nix
@@ -31,7 +31,7 @@
nixpkgs.url = "github:NixOS/nixpkgs/nixos-unstable";
# specific nixpkgs commit for EOL kernel and ZFS
- #nixpkgs-kerneol.url ="github:NixOS/nixpkgs/ac63aaa40bea925946d719a839684f5e84ce6661";
+ nixpkgs-kerneol.url ="github:NixOS/nixpkgs/853901a31bddc8bdc9edde693f649f0e50edcfc5";
# per https://nixos-and-flakes.thiscute.world/nixos-with-flakes/downgrade-or-upgrade-packages
#my-nixpkgs.url = "github:nipsy/nixpkgs/update_reaper_7.61";
@@ -57,7 +57,7 @@
home-manager,
#my-nixpkgs,
nixos-hardware,
- #nixpkgs-kerneol,
+ nixpkgs-kerneol,
nixpkgs-master,
#nixpkgs-pr545346,
nixpkgs-stable,
diff --git a/hosts/ginaz/default.nix b/hosts/ginaz/default.nix
index 585d7b5..b9345ae 100644
--- a/hosts/ginaz/default.nix
+++ b/hosts/ginaz/default.nix
@@ -2,7 +2,7 @@
boot = {
blacklistedKernelModules = [ "nouveau" ];
initrd.kernelModules = [ "amdgpu" "zfs" ];
- kernelPackages = pkgs.master.linuxPackages_7_2;
+ kernelPackages = pkgs.kerneol.linuxPackages_7_0;
loader = {
efi.canTouchEfiVariables = true;
systemd-boot = {
@@ -14,7 +14,7 @@
supportedFilesystems = [ "zfs" ];
zfs = {
forceImportRoot = false;
- package = pkgs.master.zfs_2_4;
+ package = pkgs.kerneol.zfs_2_4;
};
};
@@ -66,7 +66,7 @@
overlays = [
#inputs.nvidia-patch.overlays.default
outputs.overlays.additions
- #outputs.overlays.kerneol-packages
+ outputs.overlays.kerneol-packages
outputs.overlays.master-packages
outputs.overlays.modifications
outputs.overlays.stable-packages
diff --git a/overlays/default.nix b/overlays/default.nix
index ea0eb82..25e4c7e 100644
--- a/overlays/default.nix
+++ b/overlays/default.nix
@@ -75,13 +75,13 @@
# When applied, the kerneol nixpkgs set (declared in the flake inputs) will
# be accessible through 'pkgs.kerneol'
- #kerneol-packages = final: _prev: {
- # kerneol = import inputs.nixpkgs-kerneol {
- # inherit (final);
- # config.allowUnfree = true;
- # localSystem = final.stdenv.hostPlatform;
- # };
- #};
+ kerneol-packages = final: _prev: {
+ kerneol = import inputs.nixpkgs-kerneol {
+ inherit (final);
+ config.allowUnfree = true;
+ localSystem = final.stdenv.hostPlatform;
+ };
+ };
# When applied, the master nixpkgs set (declared in the flake inputs) will
# be accessible through 'pkgs.master'