aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMark Nipper <nipsy@bitgnome.net>2025-02-27 00:13:16 -0800
committerMark Nipper <nipsy@bitgnome.net>2025-02-27 00:13:16 -0800
commitadeeae2fdcaa72ebba43d231842b52b2d486183b (patch)
treece90ed29979f21f1c3be35f1a9ddf7ba0c58ffe2
parent66488eb825b249ebb975a0a04c5c2c3543c847f9 (diff)
downloadnix-adeeae2fdcaa72ebba43d231842b52b2d486183b.tar
nix-adeeae2fdcaa72ebba43d231842b52b2d486183b.tar.gz
nix-adeeae2fdcaa72ebba43d231842b52b2d486183b.tar.bz2
nix-adeeae2fdcaa72ebba43d231842b52b2d486183b.tar.lz
nix-adeeae2fdcaa72ebba43d231842b52b2d486183b.tar.xz
nix-adeeae2fdcaa72ebba43d231842b52b2d486183b.tar.zst
nix-adeeae2fdcaa72ebba43d231842b52b2d486183b.zip
Fix Wine 9.4 references with 9.22
-rw-r--r--flake.nix4
-rw-r--r--hosts/arrakis/default.nix4
-rw-r--r--overlays/default.nix6
3 files changed, 7 insertions, 7 deletions
diff --git a/flake.nix b/flake.nix
index 86be19a..10556a1 100644
--- a/flake.nix
+++ b/flake.nix
@@ -26,7 +26,7 @@
# per https://nixos-and-flakes.thiscute.world/nixos-with-flakes/downgrade-or-upgrade-packages
#nixpkgs-67e692392.url = "github:nixos/nixpkgs/67e69239226f37168d1adb8d29bd61150756a03e";
- nixpkgs-wine9_4.url = "github:nixos/nixpkgs/dea5930f0ed8c29d3758d5ade9898b4e99d80b74";
+ nixpkgs-wine9_22.url = "github:nixos/nixpkgs/dea5930f0ed8c29d3758d5ade9898b4e99d80b74";
nixpkgs-master.url = "github:nixos/nixpkgs";
#nixpkgs-pr369712.url = "github:7c6f434c/nixpkgs/fix-tftp-hpa";
nixpkgs-stable.url = "github:nixos/nixpkgs/release-24.05";
@@ -52,7 +52,7 @@
nixpkgs-master,
#nixpkgs-pr369712,
nixpkgs-stable,
- nixpkgs-wine9_4,
+ nixpkgs-wine9_22,
nixpkgs,
nvidia-patch,
self,
diff --git a/hosts/arrakis/default.nix b/hosts/arrakis/default.nix
index 0b7a1e2..feb978c 100644
--- a/hosts/arrakis/default.nix
+++ b/hosts/arrakis/default.nix
@@ -104,7 +104,7 @@
umoria
vial
warzone2100
- wine9_4.wineWowPackages.stagingFull
+ wine9_22.wineWowPackages.stagingFull
wpa_supplicant
xonotic-sdl
#xpilot-ng
@@ -226,7 +226,7 @@
outputs.overlays.modifications
outputs.overlays.master-packages
outputs.overlays.stable-packages
- outputs.overlays.wine9_4-packages
+ outputs.overlays.wine9_22-packages
];
};
diff --git a/overlays/default.nix b/overlays/default.nix
index b0d916e..a5e2cde 100644
--- a/overlays/default.nix
+++ b/overlays/default.nix
@@ -8,7 +8,7 @@
# outputs.overlays.master-packages
# outputs.overlays.pr369712-packages
# outputs.overlays.stable-packages
-# outputs.overlays.wine9_4-packages
+# outputs.overlays.wine9_22-packages
# ]
{inputs, ...}: {
@@ -31,8 +31,8 @@
# };
#};
- "wine9_4-packages" = final: _prev: {
- "wine9_4" = import inputs.nixpkgs-wine9_4 {
+ "wine9_22-packages" = final: _prev: {
+ "wine9_22" = import inputs.nixpkgs-wine9_22 {
inherit (final) system;
config.allowUnfree = true;
};