aboutsummaryrefslogtreecommitdiffstats
path: root/overlays
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--overlays/default.nix22
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;
+ # };
+ #};
}