diff options
| -rw-r--r-- | overlays/default.nix | 24 |
1 files changed, 16 insertions, 8 deletions
diff --git a/overlays/default.nix b/overlays/default.nix index f1e6620..b9f8ffe 100644 --- a/overlays/default.nix +++ b/overlays/default.nix @@ -65,8 +65,9 @@ #"67e692392-packages" = final: _prev: { # "67e692392" = import inputs.nixpkgs-67e692392 { - # inherit (final) system; + # inherit (final); # config.allowUnfree = true; + # localSystem = config.nixpkgs.hostPlatform; # }; #}; @@ -74,8 +75,9 @@ # be accessible through 'pkgs.kerneol' kerneol-packages = final: _prev: { kerneol = import inputs.nixpkgs-kerneol { - inherit (final) system; + inherit (final); config.allowUnfree = true; + localSystem = config.nixpkgs.hostPlatform; }; }; @@ -83,22 +85,25 @@ # be accessible through 'pkgs.master' master-packages = final: _prev: { master = import inputs.nixpkgs-master { - inherit (final) system; + inherit (final); config.allowUnfree = true; + localSystem = config.nixpkgs.hostPlatform; }; }; #my-nixpkgs-packages = final: _prev: { # my-nixpkgs = import inputs.my-nixpkgs { - # inherit (final) system; + # inherit (final); # config.allowUnfree = true; + # localSystem = config.nixpkgs.hostPlatform; # }; #}; pr540730-packages = final: _prev: { pr540730 = import inputs.nixpkgs-pr540730 { - inherit (final) system; + inherit (final); config.allowUnfree = true; + localSystem = config.nixpkgs.hostPlatform; }; }; @@ -106,8 +111,9 @@ # be accessible through 'pkgs.stable' stable-packages = final: _prev: { stable = import inputs.nixpkgs-stable { - inherit (final) system; + inherit (final); config.allowUnfree = true; + localSystem = config.nixpkgs.hostPlatform; }; }; @@ -115,15 +121,17 @@ # be accessible through 'pkgs.staging' #staging-packages = final: _prev: { # staging = import inputs.nixpkgs-staging { - # inherit (final) system; + # inherit (final); # config.allowUnfree = true; + # localSystem = config.nixpkgs.hostPlatform; # }; #}; #"wine9_22-packages" = final: _prev: { # "wine9_22" = import inputs.nixpkgs-wine9_22 { - # inherit (final) system; + # inherit (final); # config.allowUnfree = true; + # localSystem = config.nixpkgs.hostPlatform; # }; #}; } |
