aboutsummaryrefslogtreecommitdiffstats
path: root/overlays/default.nix
diff options
context:
space:
mode:
authorMark Nipper <nipsy@bitgnome.net>2026-07-14 21:35:08 -0700
committerMark Nipper <nipsy@bitgnome.net>2026-07-14 21:35:08 -0700
commit6a2d74b74b94829e13cb345b3194c7f7cae9c468 (patch)
tree4940f4f9b98de623a26b9197300a5cf8f4db865d /overlays/default.nix
parent2f72f94940abcc895327ae650761c41add05023e (diff)
downloadnix-6a2d74b74b94829e13cb345b3194c7f7cae9c468.tar
nix-6a2d74b74b94829e13cb345b3194c7f7cae9c468.tar.gz
nix-6a2d74b74b94829e13cb345b3194c7f7cae9c468.tar.bz2
nix-6a2d74b74b94829e13cb345b3194c7f7cae9c468.tar.lz
nix-6a2d74b74b94829e13cb345b3194c7f7cae9c468.tar.xz
nix-6a2d74b74b94829e13cb345b3194c7f7cae9c468.tar.zst
nix-6a2d74b74b94829e13cb345b3194c7f7cae9c468.zip
Clean up system usageHEADmaster
Diffstat (limited to '')
-rw-r--r--overlays/default.nix32
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;
# };
#};
}