diff options
Diffstat (limited to 'overlays/default.nix')
| -rw-r--r-- | overlays/default.nix | 32 |
1 files changed, 16 insertions, 16 deletions
diff --git a/overlays/default.nix b/overlays/default.nix index 5c92699..5fc67bc 100644 --- a/overlays/default.nix +++ b/overlays/default.nix @@ -65,9 +65,9 @@ #"67e692392-packages" = final: _prev: { # "67e692392" = import inputs.nixpkgs-67e692392 { - # inherit (final) config; + # inherit (final); # config.allowUnfree = true; - # localSystem = config.nixpkgs.hostPlatform; + # localSystem = final.stdenv.hostPlatform; # }; #}; @@ -75,9 +75,9 @@ # be accessible through 'pkgs.kerneol' kerneol-packages = final: _prev: { kerneol = import inputs.nixpkgs-kerneol { - inherit (final) config; + inherit (final); config.allowUnfree = true; - localSystem = config.nixpkgs.hostPlatform; + localSystem = final.stdenv.hostPlatform; }; }; @@ -85,25 +85,25 @@ # be accessible through 'pkgs.master' master-packages = final: _prev: { master = import inputs.nixpkgs-master { - inherit (final) config; + inherit (final); config.allowUnfree = true; - localSystem = config.nixpkgs.hostPlatform; + localSystem = final.stdenv.hostPlatform; }; }; #my-nixpkgs-packages = final: _prev: { # my-nixpkgs = import inputs.my-nixpkgs { - # inherit (final) config; + # inherit (final); # config.allowUnfree = true; - # localSystem = config.nixpkgs.hostPlatform; + # localSystem = final.stdenv.hostPlatform; # }; #}; pr540730-packages = final: _prev: { pr540730 = import inputs.nixpkgs-pr540730 { - inherit (final) config; + inherit (final); config.allowUnfree = true; - localSystem = config.nixpkgs.hostPlatform; + localSystem = final.stdenv.hostPlatform; }; }; @@ -111,9 +111,9 @@ # be accessible through 'pkgs.stable' stable-packages = final: _prev: { stable = import inputs.nixpkgs-stable { - inherit (final) config; + inherit (final); config.allowUnfree = true; - localSystem = config.nixpkgs.hostPlatform; + localSystem = final.stdenv.hostPlatform; }; }; @@ -121,17 +121,17 @@ # be accessible through 'pkgs.staging' #staging-packages = final: _prev: { # staging = import inputs.nixpkgs-staging { - # inherit (final) config; + # inherit (final); # config.allowUnfree = true; - # localSystem = config.nixpkgs.hostPlatform; + # localSystem = final.stdenv.hostPlatform; # }; #}; #"wine9_22-packages" = final: _prev: { # "wine9_22" = import inputs.nixpkgs-wine9_22 { - # inherit (final) config; + # inherit (final); # config.allowUnfree = true; - # localSystem = config.nixpkgs.hostPlatform; + # localSystem = final.stdenv.hostPlatform; # }; #}; } |
