diff options
| author | Mark Nipper <nipsy@bitgnome.net> | 2026-07-06 11:19:23 -0700 |
|---|---|---|
| committer | Mark Nipper <nipsy@bitgnome.net> | 2026-07-06 11:19:23 -0700 |
| commit | 812b0361f33729d4add70e070538553d7b15493d (patch) | |
| tree | 875a1e87409b47d53d2474b53f8b4c6c792089e8 /overlays | |
| parent | e848bf66e5e4ae54122c3919a40468e8812907df (diff) | |
| download | nix-812b0361f33729d4add70e070538553d7b15493d.tar nix-812b0361f33729d4add70e070538553d7b15493d.tar.gz nix-812b0361f33729d4add70e070538553d7b15493d.tar.bz2 nix-812b0361f33729d4add70e070538553d7b15493d.tar.lz nix-812b0361f33729d4add70e070538553d7b15493d.tar.xz nix-812b0361f33729d4add70e070538553d7b15493d.tar.zst nix-812b0361f33729d4add70e070538553d7b15493d.zip | |
Add overlay for EOL kernel and ZFS
Diffstat (limited to 'overlays')
| -rw-r--r-- | overlays/default.nix | 22 |
1 files changed, 16 insertions, 6 deletions
diff --git a/overlays/default.nix b/overlays/default.nix index ad075f5..3c420f1 100644 --- a/overlays/default.nix +++ b/overlays/default.nix @@ -5,6 +5,7 @@ # outputs.overlays.additions # outputs.overlays.modifications # outputs.overlays."67e692392-packages" +# outputs.overlays.kerneol-packages # outputs.overlays.master-packages # outputs.overlays.my-nixpkgs # outputs.overlays.pr495610-packages @@ -69,12 +70,14 @@ # }; #}; - #"wine9_22-packages" = final: _prev: { - # "wine9_22" = import inputs.nixpkgs-wine9_22 { - # inherit (final) system; - # config.allowUnfree = true; - # }; - #}; + # 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) system; + config.allowUnfree = true; + }; + }; # When applied, the master nixpkgs set (declared in the flake inputs) will # be accessible through 'pkgs.master' @@ -116,4 +119,11 @@ # config.allowUnfree = true; # }; #}; + + #"wine9_22-packages" = final: _prev: { + # "wine9_22" = import inputs.nixpkgs-wine9_22 { + # inherit (final) system; + # config.allowUnfree = true; + # }; + #}; } |
