From 6a2d74b74b94829e13cb345b3194c7f7cae9c468 Mon Sep 17 00:00:00 2001 From: Mark Nipper Date: Tue, 14 Jul 2026 21:35:08 -0700 Subject: Clean up system usage --- overlays/default.nix | 32 ++++++++++++++++---------------- 1 file changed, 16 insertions(+), 16 deletions(-) (limited to 'overlays/default.nix') 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; # }; #}; } -- cgit v1.3.1