diff options
| author | Mark Nipper <nipsy@bitgnome.net> | 2026-07-14 21:32:06 -0700 |
|---|---|---|
| committer | Mark Nipper <nipsy@bitgnome.net> | 2026-07-14 21:32:06 -0700 |
| commit | 2f72f94940abcc895327ae650761c41add05023e (patch) | |
| tree | 91db15478f114874b785cbec5cc9a59be938cd9e /overlays | |
| parent | 39f31e884dd626594edfda9f00de0f15e77a9275 (diff) | |
| download | nix-2f72f94940abcc895327ae650761c41add05023e.tar nix-2f72f94940abcc895327ae650761c41add05023e.tar.gz nix-2f72f94940abcc895327ae650761c41add05023e.tar.bz2 nix-2f72f94940abcc895327ae650761c41add05023e.tar.lz nix-2f72f94940abcc895327ae650761c41add05023e.tar.xz nix-2f72f94940abcc895327ae650761c41add05023e.tar.zst nix-2f72f94940abcc895327ae650761c41add05023e.zip | |
Clean up system usage
Diffstat (limited to 'overlays')
| -rw-r--r-- | overlays/default.nix | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/overlays/default.nix b/overlays/default.nix index b9f8ffe..5c92699 100644 --- a/overlays/default.nix +++ b/overlays/default.nix @@ -65,7 +65,7 @@ #"67e692392-packages" = final: _prev: { # "67e692392" = import inputs.nixpkgs-67e692392 { - # inherit (final); + # inherit (final) config; # config.allowUnfree = true; # localSystem = config.nixpkgs.hostPlatform; # }; @@ -75,7 +75,7 @@ # be accessible through 'pkgs.kerneol' kerneol-packages = final: _prev: { kerneol = import inputs.nixpkgs-kerneol { - inherit (final); + inherit (final) config; config.allowUnfree = true; localSystem = config.nixpkgs.hostPlatform; }; @@ -85,7 +85,7 @@ # be accessible through 'pkgs.master' master-packages = final: _prev: { master = import inputs.nixpkgs-master { - inherit (final); + inherit (final) config; config.allowUnfree = true; localSystem = config.nixpkgs.hostPlatform; }; @@ -93,7 +93,7 @@ #my-nixpkgs-packages = final: _prev: { # my-nixpkgs = import inputs.my-nixpkgs { - # inherit (final); + # inherit (final) config; # config.allowUnfree = true; # localSystem = config.nixpkgs.hostPlatform; # }; @@ -101,7 +101,7 @@ pr540730-packages = final: _prev: { pr540730 = import inputs.nixpkgs-pr540730 { - inherit (final); + inherit (final) config; config.allowUnfree = true; localSystem = config.nixpkgs.hostPlatform; }; @@ -111,7 +111,7 @@ # be accessible through 'pkgs.stable' stable-packages = final: _prev: { stable = import inputs.nixpkgs-stable { - inherit (final); + inherit (final) config; config.allowUnfree = true; localSystem = config.nixpkgs.hostPlatform; }; @@ -121,7 +121,7 @@ # be accessible through 'pkgs.staging' #staging-packages = final: _prev: { # staging = import inputs.nixpkgs-staging { - # inherit (final); + # inherit (final) config; # config.allowUnfree = true; # localSystem = config.nixpkgs.hostPlatform; # }; @@ -129,7 +129,7 @@ #"wine9_22-packages" = final: _prev: { # "wine9_22" = import inputs.nixpkgs-wine9_22 { - # inherit (final); + # inherit (final) config; # config.allowUnfree = true; # localSystem = config.nixpkgs.hostPlatform; # }; |
