This commit is contained in:
Toast 2024-01-16 22:28:54 +01:00
parent 7f202c503d
commit 9fc86390b8
2 changed files with 121 additions and 1 deletions

View file

@ -72,7 +72,10 @@
nixpkgs-unstable-patched = nixpkgs.legacyPackages.x86_64-linux.applyPatches {
name = "patched-nixpkgs-unstable";
src = nixpkgs-unstable-raw;
patches = [ ./nixpkgs-patches/pr280779.patch ];
patches = [
./nixpkgs-patches/pr280779.patch
./nixpkgs-patches/pr281207.patch
];
};
# 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.self; };