Flake: backport nixpkgs pr to stable nixpkgs

This commit is contained in:
Toast 2025-01-18 13:14:06 +01:00
parent 91da240751
commit 83f7d01824

View file

@ -105,7 +105,12 @@
nixpkgs-patched = nixpkgs-raw.legacyPackages.x86_64-linux.applyPatches {
name = "patched-nixpkgs";
src = nixpkgs-raw;
patches = [];
patches = [
(nixpkgs-raw.legacyPackages.x86_64-linux.fetchpatch {
url = "https://github.com/NixOS/nixpkgs/pull/370713.patch";
hash = "sha256-gZPP99e42XdYrQz9wWHpS0ChRhK7m9Yitmy7UT5OxiM=";
})
];
};
# https://discourse.nixos.org/t/proper-way-of-applying-patch-to-system-managed-via-flake/21073/26
nixpkgs-unstable = (import "${nixpkgs-unstable-patched}/flake.nix").outputs {self = inputs.nixpkgs-unstable-raw;};