aboutsummaryrefslogtreecommitdiffstats
path: root/overlays/default.nix
diff options
context:
space:
mode:
authorMark Nipper <nipsy@bitgnome.net>2026-07-14 21:30:22 -0700
committerMark Nipper <nipsy@bitgnome.net>2026-07-14 21:30:22 -0700
commit39f31e884dd626594edfda9f00de0f15e77a9275 (patch)
tree828832a29967351a26ae821b39da9aa2d860de84 /overlays/default.nix
parent144935cbafb0ea66a6b9d9c20eff33d314ade8b8 (diff)
downloadnix-39f31e884dd626594edfda9f00de0f15e77a9275.tar
nix-39f31e884dd626594edfda9f00de0f15e77a9275.tar.gz
nix-39f31e884dd626594edfda9f00de0f15e77a9275.tar.bz2
nix-39f31e884dd626594edfda9f00de0f15e77a9275.tar.lz
nix-39f31e884dd626594edfda9f00de0f15e77a9275.tar.xz
nix-39f31e884dd626594edfda9f00de0f15e77a9275.tar.zst
nix-39f31e884dd626594edfda9f00de0f15e77a9275.zip
Clean up system usage
Diffstat (limited to '')
-rw-r--r--overlays/default.nix24
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;
# };
#};
}